]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
gpio: gpio-mxc: simplify getting .driver_data
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Sun, 21 Oct 2018 19:59:58 +0000 (21:59 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 5 Nov 2018 07:54:41 +0000 (08:54 +0100)
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>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-mxc.c

index 995cf0b9e0b1baa5364dc525850a665ba34c5a98..5c69516e90b14a3647064275751297ee417e1b73 100644 (file)
@@ -552,8 +552,7 @@ static void mxc_gpio_restore_regs(struct mxc_gpio_port *port)
 
 static int __maybe_unused mxc_gpio_noirq_suspend(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct mxc_gpio_port *port = platform_get_drvdata(pdev);
+       struct mxc_gpio_port *port = dev_get_drvdata(dev);
 
        mxc_gpio_save_regs(port);
        clk_disable_unprepare(port->clk);
@@ -563,8 +562,7 @@ static int __maybe_unused mxc_gpio_noirq_suspend(struct device *dev)
 
 static int __maybe_unused mxc_gpio_noirq_resume(struct device *dev)
 {
-       struct platform_device *pdev = to_platform_device(dev);
-       struct mxc_gpio_port *port = platform_get_drvdata(pdev);
+       struct mxc_gpio_port *port = dev_get_drvdata(dev);
        int ret;
 
        ret = clk_prepare_enable(port->clk);