diff options
author | Dan Carpenter <[email protected]> | 2015-04-21 12:34:10 +0300 |
---|---|---|
committer | Zhang Rui <[email protected]> | 2015-05-09 13:36:57 +0800 |
commit | 0d0a2bf6ed4b489eef9a84450b3d90e6e001ce63 (patch) | |
tree | f15b67dfae31044e1d0121e60abb4c58eacb5ee6 | |
parent | d81861138898ce8d83bc78f0d558ac3984225e2b (diff) |
thermal: rockchip: fix an error code
There is a copy and paste bug, "->clk" vs "->pclk", so we return the
wrong error code here.
Fixes: cbac8f639437 ('thermal: rockchip: add driver for thermal')
Signed-off-by: Dan Carpenter <[email protected]>
Reviewed-by: Caesar Wang <[email protected]>
Reviewed-by: Doug Anderson <[email protected]>
Tested-by: Caesar Wang <[email protected]>
Signed-off-by: Zhang Rui <[email protected]>
-rw-r--r-- | drivers/thermal/rockchip_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/rockchip_thermal.c b/drivers/thermal/rockchip_thermal.c index 3aa46ac7cdbc..cd8f5f93b42c 100644 --- a/drivers/thermal/rockchip_thermal.c +++ b/drivers/thermal/rockchip_thermal.c @@ -529,7 +529,7 @@ static int rockchip_thermal_probe(struct platform_device *pdev) thermal->pclk = devm_clk_get(&pdev->dev, "apb_pclk"); if (IS_ERR(thermal->pclk)) { - error = PTR_ERR(thermal->clk); + error = PTR_ERR(thermal->pclk); dev_err(&pdev->dev, "failed to get apb_pclk clock: %d\n", error); return error; |