2011-02-17 13:38:17

by Jan Beulich

[permalink] [raw]
Subject: [PATCH] streamline kernel/irq/Kconfig

"def_bool n" without prompt is pointless, these should be just "bool".

Signed-off-by: Jan Beulich <[email protected]>

---
kernel/irq/Kconfig | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

--- 2.6.38-rc5/kernel/irq/Kconfig
+++ 2.6.38-rc5-kconfig-irq/kernel/irq/Kconfig
@@ -1,5 +1,5 @@
config HAVE_GENERIC_HARDIRQS
- def_bool n
+ bool

if HAVE_GENERIC_HARDIRQS
menu "IRQ subsystem"
@@ -11,26 +11,26 @@ config GENERIC_HARDIRQS

# Select this to disable the deprecated stuff
config GENERIC_HARDIRQS_NO_DEPRECATED
- def_bool n
+ bool

# Options selectable by the architecture code
config HAVE_SPARSE_IRQ
- def_bool n
+ bool

config GENERIC_IRQ_PROBE
- def_bool n
+ bool

config GENERIC_PENDING_IRQ
- def_bool n
+ bool

config AUTO_IRQ_AFFINITY
- def_bool n
+ bool

config IRQ_PER_CPU
- def_bool n
+ bool

config HARDIRQS_SW_RESEND
- def_bool n
+ bool

config SPARSE_IRQ
bool "Support sparse irq numbering"



2011-02-22 21:37:18

by Jan Beulich

[permalink] [raw]
Subject: [tip:irq/core] genirq: Streamline kernel/irq/Kconfig

Commit-ID: fd4afaf33313d94f548cb09129ecba3dbab62931
Gitweb: http://git.kernel.org/tip/fd4afaf33313d94f548cb09129ecba3dbab62931
Author: Jan Beulich <[email protected]>
AuthorDate: Thu, 17 Feb 2011 13:39:05 +0000
Committer: Thomas Gleixner <[email protected]>
CommitDate: Tue, 22 Feb 2011 22:33:10 +0100

genirq: Streamline kernel/irq/Kconfig

"def_bool n" without prompt is pointless, these should be just "bool".

[ tglx: Adapted to latest changes ]

Signed-off-by: Jan Beulich <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>

---
kernel/irq/Kconfig | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/kernel/irq/Kconfig b/kernel/irq/Kconfig
index 9149be7..355b8c7 100644
--- a/kernel/irq/Kconfig
+++ b/kernel/irq/Kconfig
@@ -1,5 +1,5 @@
config HAVE_GENERIC_HARDIRQS
- def_bool n
+ bool

if HAVE_GENERIC_HARDIRQS
menu "IRQ subsystem"
@@ -11,32 +11,32 @@ config GENERIC_HARDIRQS

# Select this to disable the deprecated stuff
config GENERIC_HARDIRQS_NO_DEPRECATED
- def_bool n
+ bool

config GENERIC_HARDIRQS_NO_COMPAT
- def_bool n
+ bool

# Options selectable by the architecture code
config HAVE_SPARSE_IRQ
- def_bool n
+ bool

config GENERIC_IRQ_PROBE
- def_bool n
+ bool

config GENERIC_IRQ_SHOW
- def_bool n
+ bool

config GENERIC_PENDING_IRQ
- def_bool n
+ bool

config AUTO_IRQ_AFFINITY
- def_bool n
+ bool

config HARDIRQS_SW_RESEND
- def_bool n
+ bool

config IRQ_PREFLOW_FASTEOI
- def_bool n
+ bool

config SPARSE_IRQ
bool "Support sparse irq numbering"