diff options
author | Matt Porter <matt.porter@linaro.org> | 2013-09-20 23:16:14 +0400 |
---|---|---|
committer | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-09-29 23:09:23 +0400 |
commit | 2881764d2a3638ec6e35e09df8f8e39338361ad7 (patch) | |
tree | da12d5347161746fec8e8587c3644c439af2cd72 /arch/arm | |
parent | 4178bac4f6e955869395b30246687d41183a5edb (diff) | |
download | linux-2881764d2a3638ec6e35e09df8f8e39338361ad7.tar.xz |
ARM: bcm: provide common arch init for DT clocks
With arch/arm calling of_clk_init(NULL) and clocksource_of_init()
this is no longer needed. The former is useful because we can make
use of dummy fixed clocks for drivers until the bcm281xx common
clock driver is ready.
Signed-off-by: Matt Porter <matt.porter@linaro.org>
Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
Acked-by: Christian Daudt <csd@broadcom.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-bcm/board_bcm281xx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-bcm/board_bcm281xx.c b/arch/arm/mach-bcm/board_bcm281xx.c index 8d9f931164bb..26b2390492b8 100644 --- a/arch/arm/mach-bcm/board_bcm281xx.c +++ b/arch/arm/mach-bcm/board_bcm281xx.c @@ -68,7 +68,6 @@ static void __init board_init(void) static const char * const bcm11351_dt_compat[] = { "brcm,bcm11351", NULL, }; DT_MACHINE_START(BCM11351_DT, "Broadcom Application Processor") - .init_time = clocksource_of_init, .init_machine = board_init, .restart = bcm_kona_restart, .dt_compat = bcm11351_dt_compat, |