]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
thermal: zx2967_thermal: simplify getting .driver_data
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Sun, 21 Oct 2018 20:00:52 +0000 (22:00 +0200)
committerZhang Rui <rui.zhang@intel.com>
Fri, 30 Nov 2018 08:46:57 +0000 (16:46 +0800)
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>
drivers/thermal/zx2967_thermal.c

index 6acce0bce7c02b3faf3fad01295197fb979d4701..145ebf37159872349ed7a79430f67aa892248be2 100644 (file)
@@ -207,8 +207,7 @@ MODULE_DEVICE_TABLE(of, zx2967_thermal_id_table);
 #ifdef CONFIG_PM_SLEEP
 static int zx2967_thermal_suspend(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
+       struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
 
        if (priv && priv->clk_topcrm)
                clk_disable_unprepare(priv->clk_topcrm);
@@ -221,8 +220,7 @@ static int zx2967_thermal_suspend(struct device *dev)
 
 static int zx2967_thermal_resume(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct zx2967_thermal_priv *priv = platform_get_drvdata(pdev);
+       struct zx2967_thermal_priv *priv = dev_get_drvdata(dev);
        int error;
 
        error = clk_prepare_enable(priv->clk_topcrm);