[PATCH] mips: lantiq: Silence compiler complaints

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



With recent GCC this warning appears:

CC  arch/mips/lantiq/prom.o
  arch/mips/lantiq/prom.c: In function 'plat_mem_setup':
  arch/mips/lantiq/prom.c:82:30:
  error: comparison between two arrays [-Werror=array-compare]
   82 |         else if (__dtb_start != __dtb_end)
      |                              ^~
  arch/mips/lantiq/prom.c:82:30: note:
  use '&__dtb_start[0] != &__dtb_end[0]' to compare the addresses

OK let's add & in front of the addresses so it's unambiguous.

Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx>
---
 arch/mips/lantiq/prom.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/lantiq/prom.c b/arch/mips/lantiq/prom.c
index 51a218f04fe0..3f568f5aae2d 100644
--- a/arch/mips/lantiq/prom.c
+++ b/arch/mips/lantiq/prom.c
@@ -79,7 +79,7 @@ void __init plat_mem_setup(void)
 
 	if (fw_passed_dtb) /* UHI interface */
 		dtb = (void *)fw_passed_dtb;
-	else if (__dtb_start != __dtb_end)
+	else if (&__dtb_start != &__dtb_end)
 		dtb = (void *)__dtb_start;
 	else
 		panic("no dtb found");
-- 
2.34.1




[Index of Archives]     [LKML Archive]     [Linux ARM Kernel]     [Linux ARM]     [Git]     [Yosemite News]     [Linux SCSI]     [Linux Hams]

  Powered by Linux