diff options
author | Magnus Damm <damm+renesas@opensource.se> | 2014-05-12 08:25:18 +0900 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2014-05-12 16:09:45 +0900 |
commit | 648c687a6a43a6473caedba4785a16537bd21bfb (patch) | |
tree | dd1fe74bae9abdc8edaf1a7b0ba56a7b5d88e98e | |
parent | bf901fbd9040effe4aa1389f78efcc1c2736a44b (diff) |
ARM: shmobile: Use r8a7791 DT CPU Frequency in common case
Convert the common C-code-less r8a7791 DT board support
to use shmobile_init_delay() to be able to migrate away
from per-SoC delay setup functions.
Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7791.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7791.c b/arch/arm/mach-shmobile/setup-r8a7791.c index a7e4966f5e18..2c84e745c223 100644 --- a/arch/arm/mach-shmobile/setup-r8a7791.c +++ b/arch/arm/mach-shmobile/setup-r8a7791.c @@ -225,7 +225,7 @@ static const char *r8a7791_boards_compat_dt[] __initdata = { DT_MACHINE_START(R8A7791_DT, "Generic R8A7791 (Flattened Device Tree)") .smp = smp_ops(r8a7791_smp_ops), - .init_early = r8a7791_init_early, + .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init, .dt_compat = r8a7791_boards_compat_dt, MACHINE_END |