Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d7012a9 authored by Ingo Molnar's avatar Ingo Molnar Committed by Linus Torvalds
Browse files

[PATCH] genirq: cleanup: turn ARCH_HAS_IRQ_PER_CPU into CONFIG_IRQ_PER_CPU



Cleanup: change ARCH_HAS_IRQ_PER_CPU into a Kconfig method.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cd916d31
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -28,6 +28,10 @@ config GENERIC_CALIBRATE_DELAY
	bool
	bool
	default y
	default y


config IRQ_PER_CPU
	bool
	default y

config CRIS
config CRIS
	bool
	bool
	default y
	default y
+4 −0
Original line number Original line Diff line number Diff line
@@ -492,6 +492,10 @@ config GENERIC_PENDING_IRQ
	depends on GENERIC_HARDIRQS && SMP
	depends on GENERIC_HARDIRQS && SMP
	default y
	default y


config IRQ_PER_CPU
	bool
	default y

source "arch/ia64/hp/sim/Kconfig"
source "arch/ia64/hp/sim/Kconfig"


menu "Instrumentation Support"
menu "Instrumentation Support"
+5 −0
Original line number Original line Diff line number Diff line
@@ -1618,6 +1618,11 @@ config GENERIC_IRQ_PROBE
	bool
	bool
	default y
	default y


config IRQ_PER_CPU
	depends on SMP
	bool
	default y

#
#
# - Highmem only makes sense for the 32-bit kernel.
# - Highmem only makes sense for the 32-bit kernel.
# - The current highmem code will only work properly on physically indexed
# - The current highmem code will only work properly on physically indexed
+4 −0
Original line number Original line Diff line number Diff line
@@ -51,6 +51,10 @@ config GENERIC_HARDIRQS
config GENERIC_IRQ_PROBE
config GENERIC_IRQ_PROBE
	def_bool y
	def_bool y


config IRQ_PER_CPU
	bool
	default y

# unless you want to implement ACPI on PA-RISC ... ;-)
# unless you want to implement ACPI on PA-RISC ... ;-)
config PM
config PM
	bool
	bool
+4 −0
Original line number Original line Diff line number Diff line
@@ -30,6 +30,10 @@ config GENERIC_HARDIRQS
	bool
	bool
	default y
	default y


config IRQ_PER_CPU
	bool
	default y

config RWSEM_GENERIC_SPINLOCK
config RWSEM_GENERIC_SPINLOCK
	bool
	bool


Loading