aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2017-02-06 16:09:26 +0000
committerStephen Boyd <sboyd@codeaurora.org>2017-02-06 15:01:29 -0800
commit09bdcd6e1784da3d14b3b8d4b6760610dffeb269 (patch)
treeb365d2d441e8ad96a878968cb92beef42fc33644 /drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
parentclk: sunxi-ng: select SUNXI_CCU_MULT for sun5i (diff)
downloadlinux-dev-09bdcd6e1784da3d14b3b8d4b6760610dffeb269.tar.xz
linux-dev-09bdcd6e1784da3d14b3b8d4b6760610dffeb269.zip
clk: sunxi-ng: sun9i-a80: Fix wrong pointer passed to PTR_ERR()
PTR_ERR should access the value just tested by IS_ERR, otherwise the wrong error code will be returned. Fixes: 783ab76ae553 ("clk: sunxi-ng: Add A80 Display Engine CCU") Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c')
-rw-r--r--drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c b/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
index 3fc27db0a49a..6d116581c86d 100644
--- a/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
+++ b/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
@@ -232,7 +232,7 @@ static int sun9i_a80_de_clk_probe(struct platform_device *pdev)
rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL);
if (IS_ERR(rstc)) {
- ret = PTR_ERR(bus_clk);
+ ret = PTR_ERR(rstc);
if (ret != -EPROBE_DEFER)
dev_err(&pdev->dev,
"Couldn't get reset control: %d\n", ret);