[PATCH 1/6] powerpc/kconfig: Move NR_IRQS into "Kernel Options"

Michael Ellerman mpe at ellerman.id.au
Fri Oct 9 08:09:12 AEDT 2015


Currently the NR_IRQS option sits at the top level, which is ugly in
menuconfig. It's not something users will commonly need to worry about
so move it into "Kernel Options".

Signed-off-by: Michael Ellerman <mpe at ellerman.id.au>
---
 arch/powerpc/Kconfig | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 9a7057ec2154..c6f1aa1e8d4c 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -33,16 +33,6 @@ config HAVE_SETUP_PER_CPU_AREA
 config NEED_PER_CPU_EMBED_FIRST_CHUNK
 	def_bool PPC64
 
-config NR_IRQS
-	int "Number of virtual interrupt numbers"
-	range 32 32768
-	default "512"
-	help
-	  This defines the number of virtual interrupt numbers the kernel
-	  can manage. Virtual interrupt numbers are what you see in
-	  /proc/interrupts. If you configure your system to have too few,
-	  drivers will fail to load or worse - handle with care.
-
 config STACKTRACE_SUPPORT
 	bool
 	default y
@@ -321,6 +311,16 @@ config HIGHMEM
 	bool "High memory support"
 	depends on PPC32
 
+config NR_IRQS
+	int "Number of virtual interrupt numbers"
+	range 32 32768
+	default "512"
+	help
+	  This defines the number of virtual interrupt numbers the kernel
+	  can manage. Virtual interrupt numbers are what you see in
+	  /proc/interrupts. If you configure your system to have too few,
+	  drivers will fail to load or worse - handle with care.
+
 source kernel/Kconfig.hz
 source kernel/Kconfig.preempt
 source "fs/Kconfig.binfmt"
-- 
2.1.4



More information about the Linuxppc-dev mailing list