MIPS: Fix flood of warnings about comparsion being always true.
authorRalf Baechle <ralf@linux-mips.org>
Mon, 16 Nov 2015 11:07:10 +0000 (12:07 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 16 Nov 2015 11:07:10 +0000 (12:07 +0100)
./arch/mips/include/asm/page.h:204:13: warning: comparison of unsigned expression &gt;= 0 is always true [-Wtype-limits]

The default value of ARCH_PFN_OFFSET is 0 thus triggering this warning
for all platforms using the default value.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/page.h

index ad1fccdb8d13ee3d14e97efe3831bd266ba65a4b..2046c023022406d8a336197db13df1a75b1e8021 100644 (file)
@@ -200,8 +200,9 @@ static inline int pfn_valid(unsigned long pfn)
 {
        /* avoid <linux/mm.h> include hell */
        extern unsigned long max_mapnr;
+       unsigned long pfn_offset = ARCH_PFN_OFFSET;
 
-       return pfn >= ARCH_PFN_OFFSET && pfn < max_mapnr;
+       return pfn >= pfn_offset && pfn < max_mapnr;
 }
 
 #elif defined(CONFIG_SPARSEMEM)