mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
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: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
This commit is contained in:
parent
2103868047
commit
e24b9fc109
@ -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)
|
|||||||
|
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user