aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/Kconfig
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-06-07 03:46:06 -0400
committerMike Frysinger <vapier@gentoo.org>2009-06-13 07:20:12 -0400
commitbac7d89ebe64eca9ce63ee6a5e4341d252671467 (patch)
tree91881f6cfa59af09913636546c5caeb77a9d5fbc /arch/blackfin/Kconfig
parent7a8b71db9dbb87640ffabcf42285781a808de342 (diff)
Blackfin: convert Kconfig style to def_bool
Makes the file easier to read when there isn't so much clutter. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/Kconfig')
-rw-r--r--arch/blackfin/Kconfig36
1 files changed, 12 insertions, 24 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
index 74cdcf39b41c..2cf455a7c011 100644
--- a/arch/blackfin/Kconfig
+++ b/arch/blackfin/Kconfig
@@ -6,24 +6,19 @@
6mainmenu "Blackfin Kernel Configuration" 6mainmenu "Blackfin Kernel Configuration"
7 7
8config MMU 8config MMU
9 bool 9 def_bool n
10 default n
11 10
12config FPU 11config FPU
13 bool 12 def_bool n
14 default n
15 13
16config RWSEM_GENERIC_SPINLOCK 14config RWSEM_GENERIC_SPINLOCK
17 bool 15 def_bool y
18 default y
19 16
20config RWSEM_XCHGADD_ALGORITHM 17config RWSEM_XCHGADD_ALGORITHM
21 bool 18 def_bool n
22 default n
23 19
24config BLACKFIN 20config BLACKFIN
25 bool 21 def_bool y
26 default y
27 select HAVE_IDE 22 select HAVE_IDE
28 select HAVE_OPROFILE 23 select HAVE_OPROFILE
29 select ARCH_WANT_OPTIONAL_GPIOLIB 24 select ARCH_WANT_OPTIONAL_GPIOLIB
@@ -33,36 +28,29 @@ config GENERIC_BUG
33 depends on BUG 28 depends on BUG
34 29
35config ZONE_DMA 30config ZONE_DMA
36 bool 31 def_bool y
37 default y
38 32
39config GENERIC_FIND_NEXT_BIT 33config GENERIC_FIND_NEXT_BIT
40 bool 34 def_bool y
41 default y
42 35
43config GENERIC_HWEIGHT 36config GENERIC_HWEIGHT
44 bool 37 def_bool y
45 default y
46 38
47config GENERIC_HARDIRQS 39config GENERIC_HARDIRQS
48 bool 40 def_bool y
49 default y
50 41
51config GENERIC_IRQ_PROBE 42config GENERIC_IRQ_PROBE
52 bool 43 def_bool y
53 default y
54 44
55config GENERIC_GPIO 45config GENERIC_GPIO
56 bool 46 def_bool y
57 default y
58 47
59config FORCE_MAX_ZONEORDER 48config FORCE_MAX_ZONEORDER
60 int 49 int
61 default "14" 50 default "14"
62 51
63config GENERIC_CALIBRATE_DELAY 52config GENERIC_CALIBRATE_DELAY
64 bool 53 def_bool y
65 default y
66 54
67source "init/Kconfig" 55source "init/Kconfig"
68 56