diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-11-23 13:25:00 -0500 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-12-07 08:52:35 -0500 |
commit | 58bd2bfebd02ff7fe84bbb36188e908223b2c7b7 (patch) | |
tree | 27570e82d109b64dc58b86ff48f84f84e3c7ed83 /arch/avr32 | |
parent | df679771ce6a6bf57012459fbd15c981deaee526 (diff) |
[AVR32] Kconfig: Use def_bool instead of bool + default
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/Kconfig | 56 |
1 files changed, 19 insertions, 37 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 4f402c924504..b108dd83f234 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -6,8 +6,7 @@ | |||
6 | mainmenu "Linux Kernel Configuration" | 6 | mainmenu "Linux Kernel Configuration" |
7 | 7 | ||
8 | config AVR32 | 8 | config AVR32 |
9 | bool | 9 | def_bool y |
10 | default y | ||
11 | # With EMBEDDED=n, we get lots of stuff automatically selected | 10 | # With EMBEDDED=n, we get lots of stuff automatically selected |
12 | # that we usually don't need on AVR32. | 11 | # that we usually don't need on AVR32. |
13 | select EMBEDDED | 12 | select EMBEDDED |
@@ -20,51 +19,40 @@ config AVR32 | |||
20 | http://avr32linux.org/. | 19 | http://avr32linux.org/. |
21 | 20 | ||
22 | config GENERIC_GPIO | 21 | config GENERIC_GPIO |
23 | bool | 22 | def_bool y |
24 | default y | ||
25 | 23 | ||
26 | config GENERIC_HARDIRQS | 24 | config GENERIC_HARDIRQS |
27 | bool | 25 | def_bool y |
28 | default y | ||
29 | 26 | ||
30 | config HARDIRQS_SW_RESEND | 27 | config HARDIRQS_SW_RESEND |
31 | bool | 28 | def_bool y |
32 | default y | ||
33 | 29 | ||
34 | config GENERIC_IRQ_PROBE | 30 | config GENERIC_IRQ_PROBE |
35 | bool | 31 | def_bool y |
36 | default y | ||
37 | 32 | ||
38 | config RWSEM_GENERIC_SPINLOCK | 33 | config RWSEM_GENERIC_SPINLOCK |
39 | bool | 34 | def_bool y |
40 | default y | ||
41 | 35 | ||
42 | config GENERIC_TIME | 36 | config GENERIC_TIME |
43 | bool | 37 | def_bool y |
44 | default y | ||
45 | 38 | ||
46 | config RWSEM_XCHGADD_ALGORITHM | 39 | config RWSEM_XCHGADD_ALGORITHM |
47 | bool | 40 | def_bool n |
48 | 41 | ||
49 | config ARCH_HAS_ILOG2_U32 | 42 | config ARCH_HAS_ILOG2_U32 |
50 | bool | 43 | def_bool n |
51 | default n | ||
52 | 44 | ||
53 | config ARCH_HAS_ILOG2_U64 | 45 | config ARCH_HAS_ILOG2_U64 |
54 | bool | 46 | def_bool n |
55 | default n | ||
56 | 47 | ||
57 | config GENERIC_HWEIGHT | 48 | config GENERIC_HWEIGHT |
58 | bool | 49 | def_bool y |
59 | default y | ||
60 | 50 | ||
61 | config GENERIC_CALIBRATE_DELAY | 51 | config GENERIC_CALIBRATE_DELAY |
62 | bool | 52 | def_bool y |
63 | default y | ||
64 | 53 | ||
65 | config GENERIC_BUG | 54 | config GENERIC_BUG |
66 | bool | 55 | def_bool y |
67 | default y | ||
68 | depends on BUG | 56 | depends on BUG |
69 | 57 | ||
70 | source "init/Kconfig" | 58 | source "init/Kconfig" |
@@ -139,28 +127,22 @@ config PHYS_OFFSET | |||
139 | source "kernel/Kconfig.preempt" | 127 | source "kernel/Kconfig.preempt" |
140 | 128 | ||
141 | config HAVE_ARCH_BOOTMEM_NODE | 129 | config HAVE_ARCH_BOOTMEM_NODE |
142 | bool | 130 | def_bool n |
143 | default n | ||
144 | 131 | ||
145 | config ARCH_HAVE_MEMORY_PRESENT | 132 | config ARCH_HAVE_MEMORY_PRESENT |
146 | bool | 133 | def_bool n |
147 | default n | ||
148 | 134 | ||
149 | config NEED_NODE_MEMMAP_SIZE | 135 | config NEED_NODE_MEMMAP_SIZE |
150 | bool | 136 | def_bool n |
151 | default n | ||
152 | 137 | ||
153 | config ARCH_FLATMEM_ENABLE | 138 | config ARCH_FLATMEM_ENABLE |
154 | bool | 139 | def_bool y |
155 | default y | ||
156 | 140 | ||
157 | config ARCH_DISCONTIGMEM_ENABLE | 141 | config ARCH_DISCONTIGMEM_ENABLE |
158 | bool | 142 | def_bool n |
159 | default n | ||
160 | 143 | ||
161 | config ARCH_SPARSEMEM_ENABLE | 144 | config ARCH_SPARSEMEM_ENABLE |
162 | bool | 145 | def_bool n |
163 | default n | ||
164 | 146 | ||
165 | source "mm/Kconfig" | 147 | source "mm/Kconfig" |
166 | 148 | ||