diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-06-18 09:51:59 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-06-21 14:48:39 +0200 |
commit | b6f5f4a5930855175dff7f783c0595bcdfb08280 (patch) | |
tree | 7d38dda1eb900742fe7afea0c6d77dd0e3c93553 /arch/arm/mach-ux500/board-mop500.c | |
parent | b099576de9d7352a1f4b7650eef562f3d4d29198 (diff) | |
download | blackbird-op-linux-b6f5f4a5930855175dff7f783c0595bcdfb08280.tar.gz blackbird-op-linux-b6f5f4a5930855175dff7f783c0595bcdfb08280.zip |
ARM: ux500: Remove mop500_snowball_ethernet_clock_enable()
mop500_snowball_ethernet_clock_enable() provided a means to enable a
clock which was used for the SMSC911x Ethernet device on Snowball. It
was merely a stand-in until the driver was common clk compliant. Now
that it is, this can be removed for both DT and ATAGs booting.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/mach-ux500/board-mop500.c')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 78389de94dde..70a8057f3acf 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c @@ -413,15 +413,6 @@ static void mop500_prox_deactivate(struct device *dev) regulator_put(prox_regulator); } -void mop500_snowball_ethernet_clock_enable(void) -{ - struct clk *clk; - - clk = clk_get_sys("fsmc", NULL); - if (!IS_ERR(clk)) - clk_prepare_enable(clk); -} - static struct cryp_platform_data u8500_cryp1_platform_data = { .mem_to_engine = { .dir = STEDMA40_MEM_TO_PERIPH, @@ -674,8 +665,6 @@ static void __init snowball_init_machine(void) mop500_audio_init(parent); mop500_uart_init(parent); - mop500_snowball_ethernet_clock_enable(); - /* This board has full regulator constraints */ regulator_has_full_constraints(); } |