mfd/vexpress: vexpress_sysreg_setup must not be __init
authorArnd Bergmann <arnd@arndb.de>
Fri, 25 Jan 2013 18:53:52 +0000 (18:53 +0000)
committerOlof Johansson <olof@lixom.net>
Mon, 28 Jan 2013 22:07:14 +0000 (14:07 -0800)
The patch 52666298a 'mfd: vexpress-sysreg: Don't skip initialization
on probe' adds a call to vexpress_sysreg_setup from a non-__init
function, so this also has to lose its __init annotation.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: arm@kernel.org
Signed-off-by: Olof Johansson <olof@lixom.net>
drivers/mfd/vexpress-sysreg.c

index 77048b1..558c292 100644 (file)
@@ -313,7 +313,7 @@ static void vexpress_sysreg_config_complete(unsigned long data)
 }
 
 
-void __init vexpress_sysreg_setup(struct device_node *node)
+void vexpress_sysreg_setup(struct device_node *node)
 {
        if (WARN_ON(!vexpress_sysreg_base))
                return;