Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -252,7 +252,7 @@ static int __init s3c2443_add_sub(unsigned int base,
	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");

@@ -280,7 +280,7 @@ static struct sysdev_driver s3c2443_irq_driver = {
	.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);
}