Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a60def75 authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman
Browse files

MIPS: fix build with gcc-12



Some mips builds with gcc-12 fails with the error:
arch/mips/jz4740/setup.c:64:25: error: comparison between two arrays
	[-Werror=array-compare]
   	64 |         if (__dtb_start != __dtb_end)

'd24f48767d5e ("MIPS: Use address-of operator on section symbols")' has
been applied which fixes most of the error, but it missed one file which
was not available upstream when the change was done.

Fixes: d24f48767d5e ("MIPS: Use address-of operator on section symbols")
Signed-off-by: default avatarSudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a3112d5d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ void __init plat_mem_setup(void)

	jz4740_reset_init();

	if (__dtb_start != __dtb_end)
	if (&__dtb_start != &__dtb_end)
		dtb = __dtb_start;
	else
		dtb = (void *)fw_passed_dtb;