mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 17:23:25 -05:00
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: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
b4e086f679
commit
54bf93c49a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue