]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
m68k: fix ColdFire mmu init compile warning
authorGreg Ungerer <gerg@linux-m68k.org>
Mon, 15 Jun 2020 00:41:08 +0000 (10:41 +1000)
committerGreg Ungerer <gerg@linux-m68k.org>
Mon, 27 Jul 2020 02:32:00 +0000 (12:32 +1000)
Compiling for MMU enabled ColdFire targets gives a warning:

  CC      arch/m68k/mm/mcfmmu.o
arch/m68k/mm/mcfmmu.c: In function ‘paging_init’:
arch/m68k/mm/mcfmmu.c:42:17: warning: unused variable ‘zone’ [-Wunused-variable]
  enum zone_type zone;
                 ^~~~

This was caused by changes in commit fa3354e4ea39 ("mm: free_area_init:
use maximal zone PFNs rather than zone sizes") leaving around a now
unused variable declaration. Remove the unused variable.

Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
arch/m68k/mm/mcfmmu.c

index 7d04210d34f026da98f2e083df3a598624eab815..fe1a84891035c0a4ff1999e5e978a59999011284 100644 (file)
@@ -39,7 +39,6 @@ void __init paging_init(void)
        unsigned long address, size;
        unsigned long next_pgtable, bootmem_end;
        unsigned long max_zone_pfn[MAX_NR_ZONES] = { 0 };
-       enum zone_type zone;
        int i;
 
        empty_zero_page = (void *) memblock_alloc(PAGE_SIZE, PAGE_SIZE);