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