diff options
author | Matt Hsu <matt_hsu@openmoko.org> | 2009-01-08 16:27:30 +0800 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-01-08 16:25:24 +0000 |
commit | 43a55cdffcb523b7308d21b2f72189ba6ab57828 (patch) | |
tree | edf02a8710f27b856c9da8448d6cabac54e8a168 /arch/arm | |
parent | 2fafae3f6ddedc5642ddbbbfa0825eec87863553 (diff) | |
download | linux-3.10-43a55cdffcb523b7308d21b2f72189ba6ab57828.tar.gz linux-3.10-43a55cdffcb523b7308d21b2f72189ba6ab57828.tar.bz2 linux-3.10-43a55cdffcb523b7308d21b2f72189ba6ab57828.zip |
[ARM] S3C64XX: Fix EINT group macro definition
Fix IRQ_EINT_GROUP which has an extra _ in it and
an error in the IRQ offset.
Signed-off-by: Matt Hsu <matt_hsu@openmoko.org>
[ben-linux@fluff.org: rewrite description]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-s3c64xx/include/plat/irqs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c64xx/include/plat/irqs.h b/arch/arm/plat-s3c64xx/include/plat/irqs.h index 02e8dd4c97d..2846f550b72 100644 --- a/arch/arm/plat-s3c64xx/include/plat/irqs.h +++ b/arch/arm/plat-s3c64xx/include/plat/irqs.h @@ -191,7 +191,7 @@ #define IRQ_EINT_GROUP8_BASE (IRQ_EINT_GROUP7_BASE + IRQ_EINT_GROUP7_NR) #define IRQ_EINT_GROUP9_BASE (IRQ_EINT_GROUP8_BASE + IRQ_EINT_GROUP8_NR) -#define IRQ_EINT_GROUP(group, no) (IRQ_EINT_GROUP##group##__BASE + (x)) +#define IRQ_EINT_GROUP(group, no) (IRQ_EINT_GROUP##group##_BASE + (no)) /* Set the default NR_IRQS */ |