diff options
author | Louis Yu <louis.yu@mediatek.com> | 2017-08-01 10:28:33 +0300 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2017-08-31 16:13:53 +0300 |
commit | 6760f3f74e72d690bc47b8a1ca1716d2f2e4ad74 (patch) | |
tree | ac0ae756d521e8d34bfd34fdfaf5c83edecdf608 /drivers/thermal | |
parent | 0a0689933404c50f9ee2122b69b4be83e984afa2 (diff) | |
download | linux-6760f3f74e72d690bc47b8a1ca1716d2f2e4ad74.tar.xz |
thermal: mediatek: minor mtk_thermal.c cleanups
Move independent thermal module reset in the beginning.
Signed-off-by: Louis Yu <louis.yu@mediatek.com>
Reviewed-by: Dawei Chien <dawei.chien@mediatek.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/mtk_thermal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/thermal/mtk_thermal.c b/drivers/thermal/mtk_thermal.c index b609589698c7..1e61c09153c9 100644 --- a/drivers/thermal/mtk_thermal.c +++ b/drivers/thermal/mtk_thermal.c @@ -712,16 +712,16 @@ static int mtk_thermal_probe(struct platform_device *pdev) return -EINVAL; } + ret = device_reset(&pdev->dev); + if (ret) + return ret; + ret = clk_prepare_enable(mt->clk_auxadc); if (ret) { dev_err(&pdev->dev, "Can't enable auxadc clk: %d\n", ret); return ret; } - ret = device_reset(&pdev->dev); - if (ret) - goto err_disable_clk_auxadc; - ret = clk_prepare_enable(mt->clk_peri_therm); if (ret) { dev_err(&pdev->dev, "Can't enable peri clk: %d\n", ret); |