diff options
author | Ben Dooks <ben-linux@fluff.org> | 2010-05-23 15:44:17 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2010-05-23 16:26:53 +0100 |
commit | b69a596afe1d46f24f97fe69f67370cdfa9d5329 (patch) | |
tree | f5be337b7b6df02a4a427383ab685da14ff41915 /arch/arm/mach-s5pc100/include/mach | |
parent | 91dc74e479e1ea0bb8864694303e6fe5612b707c (diff) |
ARM: S5PC100: Fix definition of IRQ_EINT()
Somewhere during the latest platform cleanups the IRQ_EINT definition
got broken, so fix it by replacing it in <mach/irqs.h>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s5pc100/include/mach')
-rw-r--r-- | arch/arm/mach-s5pc100/include/mach/irqs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pc100/include/mach/irqs.h b/arch/arm/mach-s5pc100/include/mach/irqs.h index 28aa551dc3a8..15066df3ced9 100644 --- a/arch/arm/mach-s5pc100/include/mach/irqs.h +++ b/arch/arm/mach-s5pc100/include/mach/irqs.h @@ -100,6 +100,9 @@ #define S5P_EINT_BASE1 (S5P_IRQ_VIC0(0)) #define S5P_EINT_BASE2 (IRQ_VIC_END + 1) +#define IRQ_EINT(x) ((x) < 16 ? S5P_IRQ_VIC0(x) : \ + (S5P_EINT_BASE2 + (x) - 16)) + #define S3C_IRQ_GPIO_BASE (IRQ_EINT(31) + 1) #define S3C_IRQ_GPIO(x) (S3C_IRQ_GPIO_BASE + (x)) |