[AVR32] Kconfig: Use def_bool instead of bool + default

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

+19 -37
+19 -37
arch/avr32/Kconfig
··· 6 mainmenu "Linux Kernel Configuration" 7 8 config AVR32 9 - bool 10 - default y 11 # With EMBEDDED=n, we get lots of stuff automatically selected 12 # that we usually don't need on AVR32. 13 select EMBEDDED ··· 19 http://avr32linux.org/. 20 21 config GENERIC_GPIO 22 - bool 23 - default y 24 25 config GENERIC_HARDIRQS 26 - bool 27 - default y 28 29 config HARDIRQS_SW_RESEND 30 - bool 31 - default y 32 33 config GENERIC_IRQ_PROBE 34 - bool 35 - default y 36 37 config RWSEM_GENERIC_SPINLOCK 38 - bool 39 - default y 40 41 config GENERIC_TIME 42 - bool 43 - default y 44 45 config RWSEM_XCHGADD_ALGORITHM 46 - bool 47 48 config ARCH_HAS_ILOG2_U32 49 - bool 50 - default n 51 52 config ARCH_HAS_ILOG2_U64 53 - bool 54 - default n 55 56 config GENERIC_HWEIGHT 57 - bool 58 - default y 59 60 config GENERIC_CALIBRATE_DELAY 61 - bool 62 - default y 63 64 config GENERIC_BUG 65 - bool 66 - default y 67 depends on BUG 68 69 source "init/Kconfig" ··· 127 source "kernel/Kconfig.preempt" 128 129 config HAVE_ARCH_BOOTMEM_NODE 130 - bool 131 - default n 132 133 config ARCH_HAVE_MEMORY_PRESENT 134 - bool 135 - default n 136 137 config NEED_NODE_MEMMAP_SIZE 138 - bool 139 - default n 140 141 config ARCH_FLATMEM_ENABLE 142 - bool 143 - default y 144 145 config ARCH_DISCONTIGMEM_ENABLE 146 - bool 147 - default n 148 149 config ARCH_SPARSEMEM_ENABLE 150 - bool 151 - default n 152 153 source "mm/Kconfig" 154
··· 6 mainmenu "Linux Kernel Configuration" 7 8 config AVR32 9 + def_bool y 10 # With EMBEDDED=n, we get lots of stuff automatically selected 11 # that we usually don't need on AVR32. 12 select EMBEDDED ··· 20 http://avr32linux.org/. 21 22 config GENERIC_GPIO 23 + def_bool y 24 25 config GENERIC_HARDIRQS 26 + def_bool y 27 28 config HARDIRQS_SW_RESEND 29 + def_bool y 30 31 config GENERIC_IRQ_PROBE 32 + def_bool y 33 34 config RWSEM_GENERIC_SPINLOCK 35 + def_bool y 36 37 config GENERIC_TIME 38 + def_bool y 39 40 config RWSEM_XCHGADD_ALGORITHM 41 + def_bool n 42 43 config ARCH_HAS_ILOG2_U32 44 + def_bool n 45 46 config ARCH_HAS_ILOG2_U64 47 + def_bool n 48 49 config GENERIC_HWEIGHT 50 + def_bool y 51 52 config GENERIC_CALIBRATE_DELAY 53 + def_bool y 54 55 config GENERIC_BUG 56 + def_bool y 57 depends on BUG 58 59 source "init/Kconfig" ··· 139 source "kernel/Kconfig.preempt" 140 141 config HAVE_ARCH_BOOTMEM_NODE 142 + def_bool n 143 144 config ARCH_HAVE_MEMORY_PRESENT 145 + def_bool n 146 147 config NEED_NODE_MEMMAP_SIZE 148 + def_bool n 149 150 config ARCH_FLATMEM_ENABLE 151 + def_bool y 152 153 config ARCH_DISCONTIGMEM_ENABLE 154 + def_bool n 155 156 config ARCH_SPARSEMEM_ENABLE 157 + def_bool n 158 159 source "mm/Kconfig" 160