Commit bac7d89ebe64eca9ce63ee6a5e4341d252671467
1 parent
7a8b71db9d
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 12 additions and 24 deletions Side-by-side Diff
arch/blackfin/Kconfig
... | ... | @@ -6,24 +6,19 @@ |
6 | 6 | mainmenu "Blackfin Kernel Configuration" |
7 | 7 | |
8 | 8 | config MMU |
9 | - bool | |
10 | - default n | |
9 | + def_bool n | |
11 | 10 | |
12 | 11 | config FPU |
13 | - bool | |
14 | - default n | |
12 | + def_bool n | |
15 | 13 | |
16 | 14 | config RWSEM_GENERIC_SPINLOCK |
17 | - bool | |
18 | - default y | |
15 | + def_bool y | |
19 | 16 | |
20 | 17 | config RWSEM_XCHGADD_ALGORITHM |
21 | - bool | |
22 | - default n | |
18 | + def_bool n | |
23 | 19 | |
24 | 20 | config BLACKFIN |
25 | - bool | |
26 | - default y | |
21 | + def_bool y | |
27 | 22 | select HAVE_IDE |
28 | 23 | select HAVE_OPROFILE |
29 | 24 | select ARCH_WANT_OPTIONAL_GPIOLIB |
30 | 25 | |
31 | 26 | |
32 | 27 | |
33 | 28 | |
34 | 29 | |
35 | 30 | |
... | ... | @@ -33,36 +28,29 @@ |
33 | 28 | depends on BUG |
34 | 29 | |
35 | 30 | config ZONE_DMA |
36 | - bool | |
37 | - default y | |
31 | + def_bool y | |
38 | 32 | |
39 | 33 | config GENERIC_FIND_NEXT_BIT |
40 | - bool | |
41 | - default y | |
34 | + def_bool y | |
42 | 35 | |
43 | 36 | config GENERIC_HWEIGHT |
44 | - bool | |
45 | - default y | |
37 | + def_bool y | |
46 | 38 | |
47 | 39 | config GENERIC_HARDIRQS |
48 | - bool | |
49 | - default y | |
40 | + def_bool y | |
50 | 41 | |
51 | 42 | config GENERIC_IRQ_PROBE |
52 | - bool | |
53 | - default y | |
43 | + def_bool y | |
54 | 44 | |
55 | 45 | config GENERIC_GPIO |
56 | - bool | |
57 | - default y | |
46 | + def_bool y | |
58 | 47 | |
59 | 48 | config FORCE_MAX_ZONEORDER |
60 | 49 | int |
61 | 50 | default "14" |
62 | 51 | |
63 | 52 | config GENERIC_CALIBRATE_DELAY |
64 | - bool | |
65 | - default y | |
53 | + def_bool y | |
66 | 54 | |
67 | 55 | source "init/Kconfig" |
68 | 56 |