Commit e24b9fc1 authored by Wolfram Sang's avatar Wolfram Sang Committed by Bartosz Golaszewski

gpio: xilinx: 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>
Signed-off-by: default avatarBartosz Golaszewski <brgl@bgdev.pl>
parent 21038680
...@@ -371,8 +371,7 @@ static int __maybe_unused xgpio_resume(struct device *dev) ...@@ -371,8 +371,7 @@ static int __maybe_unused xgpio_resume(struct device *dev)
static int __maybe_unused xgpio_runtime_suspend(struct device *dev) static int __maybe_unused xgpio_runtime_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct xgpio_instance *gpio = dev_get_drvdata(dev);
struct xgpio_instance *gpio = platform_get_drvdata(pdev);
clk_disable(gpio->clk); clk_disable(gpio->clk);
...@@ -381,8 +380,7 @@ static int __maybe_unused xgpio_runtime_suspend(struct device *dev) ...@@ -381,8 +380,7 @@ static int __maybe_unused xgpio_runtime_suspend(struct device *dev)
static int __maybe_unused xgpio_runtime_resume(struct device *dev) static int __maybe_unused xgpio_runtime_resume(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct xgpio_instance *gpio = dev_get_drvdata(dev);
struct xgpio_instance *gpio = platform_get_drvdata(pdev);
return clk_enable(gpio->clk); return clk_enable(gpio->clk);
} }
......
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