From: Haavard Skinnemoen I just gave CONFIG_DISCONTIGMEM a try on AVR32 and it turned out it didn't compile. Since there's only a single board available, and that board has no use for discontigmem or sparsemem anyway, I figured it's better to just turn it off until a need for it arises. Signed-off-by: Haavard Skinnemoen Signed-off-by: Andrew Morton --- arch/avr32/Kconfig | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN arch/avr32/Kconfig~avr32-turn-off-support-for-discontigmem-and-sparsemem arch/avr32/Kconfig --- a/arch/avr32/Kconfig~avr32-turn-off-support-for-discontigmem-and-sparsemem +++ a/arch/avr32/Kconfig @@ -132,12 +132,11 @@ config ARCH_FLATMEM_ENABLE config ARCH_DISCONTIGMEM_ENABLE bool - default y + default n config ARCH_SPARSEMEM_ENABLE bool - depends on EXPERIMENTAL - default y + default n source "mm/Kconfig" _