aboutsummaryrefslogtreecommitdiffstats
path: root/arch/avr32
diff options
context:
space:
mode:
authorHaavard Skinnemoen <hskinnemoen@atmel.com>2007-11-23 13:25:00 -0500
committerHaavard Skinnemoen <hskinnemoen@atmel.com>2007-12-07 08:52:35 -0500
commit58bd2bfebd02ff7fe84bbb36188e908223b2c7b7 (patch)
tree27570e82d109b64dc58b86ff48f84f84e3c7ed83 /arch/avr32
parentdf679771ce6a6bf57012459fbd15c981deaee526 (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/Kconfig56
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 @@
6mainmenu "Linux Kernel Configuration" 6mainmenu "Linux Kernel Configuration"
7 7
8config AVR32 8config 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
22config GENERIC_GPIO 21config GENERIC_GPIO
23 bool 22 def_bool y
24 default y
25 23
26config GENERIC_HARDIRQS 24config GENERIC_HARDIRQS
27 bool 25 def_bool y
28 default y
29 26
30config HARDIRQS_SW_RESEND 27config HARDIRQS_SW_RESEND
31 bool 28 def_bool y
32 default y
33 29
34config GENERIC_IRQ_PROBE 30config GENERIC_IRQ_PROBE
35 bool 31 def_bool y
36 default y
37 32
38config RWSEM_GENERIC_SPINLOCK 33config RWSEM_GENERIC_SPINLOCK
39 bool 34 def_bool y
40 default y
41 35
42config GENERIC_TIME 36config GENERIC_TIME
43 bool 37 def_bool y
44 default y
45 38
46config RWSEM_XCHGADD_ALGORITHM 39config RWSEM_XCHGADD_ALGORITHM
47 bool 40 def_bool n
48 41
49config ARCH_HAS_ILOG2_U32 42config ARCH_HAS_ILOG2_U32
50 bool 43 def_bool n
51 default n
52 44
53config ARCH_HAS_ILOG2_U64 45config ARCH_HAS_ILOG2_U64
54 bool 46 def_bool n
55 default n
56 47
57config GENERIC_HWEIGHT 48config GENERIC_HWEIGHT
58 bool 49 def_bool y
59 default y
60 50
61config GENERIC_CALIBRATE_DELAY 51config GENERIC_CALIBRATE_DELAY
62 bool 52 def_bool y
63 default y
64 53
65config GENERIC_BUG 54config GENERIC_BUG
66 bool 55 def_bool y
67 default y
68 depends on BUG 56 depends on BUG
69 57
70source "init/Kconfig" 58source "init/Kconfig"
@@ -139,28 +127,22 @@ config PHYS_OFFSET
139source "kernel/Kconfig.preempt" 127source "kernel/Kconfig.preempt"
140 128
141config HAVE_ARCH_BOOTMEM_NODE 129config HAVE_ARCH_BOOTMEM_NODE
142 bool 130 def_bool n
143 default n
144 131
145config ARCH_HAVE_MEMORY_PRESENT 132config ARCH_HAVE_MEMORY_PRESENT
146 bool 133 def_bool n
147 default n
148 134
149config NEED_NODE_MEMMAP_SIZE 135config NEED_NODE_MEMMAP_SIZE
150 bool 136 def_bool n
151 default n
152 137
153config ARCH_FLATMEM_ENABLE 138config ARCH_FLATMEM_ENABLE
154 bool 139 def_bool y
155 default y
156 140
157config ARCH_DISCONTIGMEM_ENABLE 141config ARCH_DISCONTIGMEM_ENABLE
158 bool 142 def_bool n
159 default n
160 143
161config ARCH_SPARSEMEM_ENABLE 144config ARCH_SPARSEMEM_ENABLE
162 bool 145 def_bool n
163 default n
164 146
165source "mm/Kconfig" 147source "mm/Kconfig"
166 148