ARM: kirkwood: remove legacy clk alias for mv643xx_eth
authorSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Tue, 2 Jul 2013 11:00:23 +0000 (13:00 +0200)
committerJason Cooper <jason@lakedaemon.net>
Thu, 25 Jul 2013 20:54:34 +0000 (20:54 +0000)
With all boards converted to DT enabled mv643xx_eth we can now
remove the clock alias for gbe clocks.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
arch/arm/mach-kirkwood/board-dt.c

index a3271f6..881f37e 100644 (file)
@@ -60,12 +60,10 @@ static void __init kirkwood_legacy_clk_init(void)
         */
        clkspec.args[0] = CGC_BIT_GE0;
        clk = of_clk_get_from_provider(&clkspec);
-       orion_clkdev_add(NULL, "mv643xx_eth_port.0", clk);
        clk_prepare_enable(clk);
 
        clkspec.args[0] = CGC_BIT_GE1;
        clk = of_clk_get_from_provider(&clkspec);
-       orion_clkdev_add(NULL, "mv643xx_eth_port.1", clk);
        clk_prepare_enable(clk);
 }