Skip to content

Commit

Permalink
drm/armada: update Armada 510 (Dove) to use "ext_ref_clk1" as the clock
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Russell King committed Jul 11, 2014
1 parent 0101fd0 commit fe42487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/armada/armada_510.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit fe42487

Please sign in to comment.