aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2018-10-21 16:00:52 -0400
committerZhang Rui <rui.zhang@intel.com>2018-11-30 03:46:57 -0500
commit209d07e63e14e04558cebba5e401e41bbde67b88 (patch)
tree6b1a8d8fe15a6192d8b3f28a1f8d1f6411d04b86
parent445ae758ceaf394636ad7ab9872f52cdc24165a6 (diff)
thermal: zx2967_thermal: simplify getting .driver_data
We should get 'driver_data' from 'struct device' directly. Going via platform_device is an unneeded step back and forth. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Acked-by: Shawn Guo <shawnguo@kernel.org> Reviewed-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
-rw-r--r--drivers/thermal/zx2967_thermal.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/thermal/zx2967_thermal.c b/drivers/thermal/zx2967_thermal.c
index 6acce0bce7c0..145ebf371598 100644
--- a/drivers/thermal/zx2967_thermal.c
+++ b/drivers/thermal/zx2967_thermal.c
@@ -207,8 +207,7 @@ MODULE_DEVICE_TABLE(of, zx2967_thermal_id_table);
207#ifdef CONFIG_PM_SLEEP 207#ifdef CONFIG_PM_SLEEP
208static int zx2967_thermal_suspend(struct device *dev) 208static int zx2967_thermal_suspend(struct device *dev)
209{ 209{
210 struct platform_device *pdev = to_platform_device(dev); 210 struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
211 struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
212 211
213 if (priv && priv->clk_topcrm) 212 if (priv && priv->clk_topcrm)
214 clk_disable_unprepare(priv->clk_topcrm); 213 clk_disable_unprepare(priv->clk_topcrm);
@@ -221,8 +220,7 @@ static int zx2967_thermal_suspend(struct device *dev)
221 220
222static int zx2967_thermal_resume(struct device *dev) 221static int zx2967_thermal_resume(struct device *dev)
223{ 222{
224 struct platform_device *pdev = to_platform_device(dev); 223 struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
225 struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
226 int error; 224 int error;
227 225
228 error = clk_prepare_enable(priv->clk_topcrm); 226 error = clk_prepare_enable(priv->clk_topcrm);