mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 23:53:55 +08:00
pinctrl: baytrail: 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> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
ad774315c3
commit
d481de4730
@ -1838,8 +1838,7 @@ static int byt_pinctrl_probe(struct platform_device *pdev)
|
||||
#ifdef CONFIG_PM_SLEEP
|
||||
static int byt_gpio_suspend(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct byt_gpio *vg = platform_get_drvdata(pdev);
|
||||
struct byt_gpio *vg = dev_get_drvdata(dev);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < vg->soc_data->npins; i++) {
|
||||
@ -1867,8 +1866,7 @@ static int byt_gpio_suspend(struct device *dev)
|
||||
|
||||
static int byt_gpio_resume(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
struct byt_gpio *vg = platform_get_drvdata(pdev);
|
||||
struct byt_gpio *vg = dev_get_drvdata(dev);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < vg->soc_data->npins; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user