Commit 6dfca6b3 authored by Jassi Brar's avatar Jassi Brar Committed by Benjamin Gaignard

drm: sti: fix check for clk_pix_main

copy-paste wasn't followed by editing, do it.
Signed-off-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
parent e4bf44b3
...@@ -1025,7 +1025,7 @@ static int sti_hqvdp_probe(struct platform_device *pdev) ...@@ -1025,7 +1025,7 @@ static int sti_hqvdp_probe(struct platform_device *pdev)
/* Get clock resources */ /* Get clock resources */
hqvdp->clk = devm_clk_get(dev, "hqvdp"); hqvdp->clk = devm_clk_get(dev, "hqvdp");
hqvdp->clk_pix_main = devm_clk_get(dev, "pix_main"); hqvdp->clk_pix_main = devm_clk_get(dev, "pix_main");
if (IS_ERR(hqvdp->clk) || IS_ERR(hqvdp->clk)) { if (IS_ERR(hqvdp->clk) || IS_ERR(hqvdp->clk_pix_main)) {
DRM_ERROR("Cannot get clocks\n"); DRM_ERROR("Cannot get clocks\n");
return -ENXIO; return -ENXIO;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment