Commit 54bf93c4 authored by Sebastian Hesselbarth's avatar Sebastian Hesselbarth Committed by Olof Johansson

clk: nomadik: fix missing __init on nomadik_src_init

nomadik_src_init references __initconst sections but lacks an __init
itself. Add __init to fix the section mismatch.
Signed-off-by: default avatarSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent b4e086f6
......@@ -86,7 +86,7 @@ static const struct of_device_id nomadik_src_match[] __initconst = {
{ /* sentinel */ }
};
static void nomadik_src_init(void)
static void __init nomadik_src_init(void)
{
struct device_node *np;
u32 val;
......
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