diff options
author | Andrew Lunn <andrew@lunn.ch> | 2011-12-24 01:24:24 +0100 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-05-08 16:33:56 -0700 |
commit | 452503ebc7cc4cce5b9e52cf2f03255365a53234 (patch) | |
tree | ecf09f091b74cad5d40e1d10cbf6df35ad97ef15 /arch/arm/mach-orion5x | |
parent | 4574b886698dfad6209102fed6136622b5fe1c21 (diff) | |
download | talos-obmc-linux-452503ebc7cc4cce5b9e52cf2f03255365a53234.tar.gz talos-obmc-linux-452503ebc7cc4cce5b9e52cf2f03255365a53234.zip |
ARM: Orion: Eth: Add clk/clkdev support.
The t_clk is moved from the shared part of the ethernet driver into
the per port section. Each port can have its own gated clock, which it
needs to enable/disable, as oppossed to there being one clock shared
by all ports. In practice, only kirkwood supports this at the moment.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Jamie Lentin <jm@lentin.co.uk>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'arch/arm/mach-orion5x')
-rw-r--r-- | arch/arm/mach-orion5x/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 2ef82e2f511d..3fc731824e9c 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c @@ -109,7 +109,7 @@ void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) { orion_ge00_init(eth_data, ORION5X_ETH_PHYS_BASE, IRQ_ORION5X_ETH_SUM, - IRQ_ORION5X_ETH_ERR, orion5x_tclk); + IRQ_ORION5X_ETH_ERR); } |