From: MyungJoo Ham Date: Wed, 20 Jul 2011 15:31:26 +0000 (+0900) Subject: ARM: EXYNOS4: Increase NR_IRQS for devices with more IRQs X-Git-Tag: v3.1-rc1~149^2^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03614be3edb8bccf3b169630604d35c2d191194e;p=platform%2Fkernel%2Flinux-3.10.git ARM: EXYNOS4: Increase NR_IRQS for devices with more IRQs MAX8997/17042, which are used by Exynos4-NURI, use additional IRQ numbers after GPIO's IRQs. The patch creates some room for those devices. Signed-off-by: MyungJoo Ham Signed-off-by: Kyungmin Park Signed-off-by: Kukjin Kim --- diff --git a/arch/arm/mach-exynos4/include/mach/irqs.h b/arch/arm/mach-exynos4/include/mach/irqs.h index 31f6bed..51b5db5 100644 --- a/arch/arm/mach-exynos4/include/mach/irqs.h +++ b/arch/arm/mach-exynos4/include/mach/irqs.h @@ -154,6 +154,6 @@ #define IRQ_GPIO_END (S5P_GPIOINT_BASE + S5P_GPIOINT_COUNT) /* Set the default NR_IRQS */ -#define NR_IRQS (IRQ_GPIO_END) +#define NR_IRQS (IRQ_GPIO_END + 64) #endif /* __ASM_ARCH_IRQS_H */