Skip to content

Commit

Permalink
ARM: 6278/2: fix regression in RealView after the introduction of pclk
Browse files Browse the repository at this point in the history
The patch to add the apb_pclk to the AMBA/PrimeCell bus broke
RealView, since the clockdevice is not registered at probe() time.
This moves clock initialization to a core_initcall()

[rmk:moved before the problematical commit to avoid bisect problems]

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Linus Walleij authored and Russell King committed Jul 31, 2010
1 parent 3126c7b commit 06385e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-realview/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static int __init clk_init(void)

return 0;
}
arch_initcall(clk_init);
core_initcall(clk_init);

/*
* CLCD support.
Expand Down

0 comments on commit 06385e4

Please sign in to comment.