Skip to content

Commit

Permalink
mfd/vexpress: vexpress_sysreg_setup must not be __init
Browse files Browse the repository at this point in the history
The patch 5266629 '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>
  • Loading branch information
Arnd Bergmann authored and Olof Johansson committed Jan 28, 2013
1 parent 3c2b251 commit e065d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/vexpress-sysreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e065d3d

Please sign in to comment.