Commit 209d07e6 authored by Wolfram Sang's avatar Wolfram Sang Committed by Zhang Rui

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: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: default avatarShawn Guo <shawnguo@kernel.org>
Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: default avatarZhang Rui <rui.zhang@intel.com>
parent 445ae758
...@@ -207,8 +207,7 @@ MODULE_DEVICE_TABLE(of, zx2967_thermal_id_table); ...@@ -207,8 +207,7 @@ MODULE_DEVICE_TABLE(of, zx2967_thermal_id_table);
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int zx2967_thermal_suspend(struct device *dev) static int zx2967_thermal_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
if (priv && priv->clk_topcrm) if (priv && priv->clk_topcrm)
clk_disable_unprepare(priv->clk_topcrm); clk_disable_unprepare(priv->clk_topcrm);
...@@ -221,8 +220,7 @@ static int zx2967_thermal_suspend(struct device *dev) ...@@ -221,8 +220,7 @@ static int zx2967_thermal_suspend(struct device *dev)
static int zx2967_thermal_resume(struct device *dev) static int zx2967_thermal_resume(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
int error; int error;
error = clk_prepare_enable(priv->clk_topcrm); error = clk_prepare_enable(priv->clk_topcrm);
......
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