drm/armada: update Armada 510 (Dove) to use "ext_ref_clk1" as the clock
authorRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 5 Jul 2014 10:16:58 +0000 (11:16 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Fri, 11 Jul 2014 14:40:14 +0000 (15:40 +0100)
Remove the underscore between "clk" and "1" so that we match the name
of the clock given in the documentation.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/gpu/drm/armada/armada_510.c

index 1bcf1a8c1915404ab6e20e016358264929606d1a..ad3d2ebf95c9444fac1ec1f5cfdb8f0029e2fda3 100644 (file)
@@ -19,7 +19,7 @@ static int armada510_crtc_init(struct armada_crtc *dcrtc, struct device *dev)
 {
        struct clk *clk;
 
-       clk = devm_clk_get(dev, "ext_ref_clk_1");
+       clk = devm_clk_get(dev, "ext_ref_clk1");
        if (IS_ERR(clk))
                return PTR_ERR(clk) == -ENOENT ? -EPROBE_DEFER : PTR_ERR(clk);
 
This page took 0.027501 seconds and 5 git commands to generate.