[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <m2pqb31yxk.fsf@igel.home>
Date: Thu, 19 Apr 2012 18:14:31 +0200
From: Andreas Schwab <schwab@...ux-m68k.org>
To: Grant Likely <grant.likely@...retlab.ca>
CC: Thomas Gleixner <tglx@...utronix.de>, linux-kernel@...r.kernel.org
Subject: [PATCH] irqdomain: fix typo in IRQ_BITMAP_BITS definition
8196 is an odd number, change it to the intended 8192.
Signed-off-by: Andreas Schwab <schwab@...ux-m68k.org>
---
Shouldn't it actually be just 8192 or maybe max(NR_IRQS, 8192)?
kernel/irq/internals.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/irq/internals.h b/kernel/irq/internals.h
index 8e5c56b..6430d0f 100644
--- a/kernel/irq/internals.h
+++ b/kernel/irq/internals.h
@@ -8,7 +8,7 @@
#include <linux/irqdesc.h>
#ifdef CONFIG_SPARSE_IRQ
-# define IRQ_BITMAP_BITS (NR_IRQS + 8196)
+# define IRQ_BITMAP_BITS (NR_IRQS + 8192)
#else
# define IRQ_BITMAP_BITS NR_IRQS
#endif
--
1.7.10
--
Andreas Schwab, schwab@...ux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists