summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c24xx/common.h
diff options
context:
space:
mode:
authorHeiko Stuebner2013-02-12 18:59:20 +0100
committerKukjin Kim2013-03-05 12:20:33 +0100
commitce6c164bf0ea44fad7969e1f1027d4f6cfb30360 (patch)
tree62536cd73c1e9efeb93110fc077f8ae5575172c3 /arch/arm/mach-s3c24xx/common.h
parentARM: S3C24XX: move s3c244x irq init to common irq code (diff)
downloadkernel-qcow2-linux-ce6c164bf0ea44fad7969e1f1027d4f6cfb30360.tar.gz
kernel-qcow2-linux-ce6c164bf0ea44fad7969e1f1027d4f6cfb30360.tar.xz
kernel-qcow2-linux-ce6c164bf0ea44fad7969e1f1027d4f6cfb30360.zip
ARM: S3C24XX: create dedicated irq init functions for s3c2440 and s3c2442
s3c2440 and s3c2442 need separate init functions, as the s3c2440 contains even more differing irqs that will be moved in the following patch. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c24xx/common.h')
-rw-r--r--arch/arm/mach-s3c24xx/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c24xx/common.h b/arch/arm/mach-s3c24xx/common.h
index 8a2b4137ddb6..362a8cd32eb0 100644
--- a/arch/arm/mach-s3c24xx/common.h
+++ b/arch/arm/mach-s3c24xx/common.h
@@ -73,6 +73,7 @@ extern void s3c244x_restart(char mode, const char *cmd);
#ifdef CONFIG_CPU_S3C2440
extern int s3c2440_init(void);
extern void s3c2440_map_io(void);
+extern void s3c2440_init_irq(void);
#else
#define s3c2440_init NULL
#define s3c2440_map_io NULL
@@ -81,6 +82,7 @@ extern void s3c2440_map_io(void);
#ifdef CONFIG_CPU_S3C2442
extern int s3c2442_init(void);
extern void s3c2442_map_io(void);
+extern void s3c2442_init_irq(void);
#else
#define s3c2442_init NULL
#define s3c2442_map_io NULL