Commit ac09281a026aad1fe489419bc948ba88b910e242

Authored by Arnd Bergmann
1 parent e0347c5238

ARM: at91: skip at91_io_desc definition for NOMMU

On NOMMU systems, we do cannot remap the MMIO space, so the
definition of at91_io_desc is unused.

Without this patch, building at91x40_defconfig results in:

arch/arm/mach-at91/setup.c:90:24: warning: 'at91_io_desc' defined but not used [-Wunused-variable]

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/mach-at91/setup.c
... ... @@ -87,7 +87,7 @@
87 87 iotable_init(desc, 1);
88 88 }
89 89  
90   -static struct map_desc at91_io_desc __initdata = {
  90 +static struct map_desc at91_io_desc __initdata __maybe_unused = {
91 91 .virtual = AT91_VA_BASE_SYS,
92 92 .pfn = __phys_to_pfn(AT91_BASE_SYS),
93 93 .length = SZ_16K,