Commit 008d931c authored by Krzysztof Helt's avatar Krzysztof Helt Committed by Russell King

[ARM] 4565/1: s3c2443: fix section mismatch in irq.c file

This patch removes section mismatches related to irq functions.
Signed-off-by: default avatarKrzysztof Helt <krzysztof.h1@wp.pl>
Acked-by: default avatarBen Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent e16edefe
...@@ -252,7 +252,7 @@ static int __init s3c2443_add_sub(unsigned int base, ...@@ -252,7 +252,7 @@ static int __init s3c2443_add_sub(unsigned int base,
return 0; return 0;
} }
static int s3c2443_irq_add(struct sys_device *sysdev) static int __init s3c2443_irq_add(struct sys_device *sysdev)
{ {
printk("S3C2443: IRQ Support\n"); printk("S3C2443: IRQ Support\n");
...@@ -280,7 +280,7 @@ static struct sysdev_driver s3c2443_irq_driver = { ...@@ -280,7 +280,7 @@ static struct sysdev_driver s3c2443_irq_driver = {
.add = s3c2443_irq_add, .add = s3c2443_irq_add,
}; };
static int s3c2443_irq_init(void) static int __init s3c2443_irq_init(void)
{ {
return sysdev_driver_register(&s3c2443_sysclass, &s3c2443_irq_driver); return sysdev_driver_register(&s3c2443_sysclass, &s3c2443_irq_driver);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment