提交 1ccb0426 编写于 作者: W Wolfram Sang 提交者: Linus Walleij

pinctrl: pinctrl-at91-pio4: 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: NWolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: NAlexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: NLudovic Desroches <ludovic.desroches@microchip.com>
Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
上级 9f540c3e
...@@ -868,8 +868,7 @@ static struct pinctrl_desc atmel_pinctrl_desc = { ...@@ -868,8 +868,7 @@ static struct pinctrl_desc atmel_pinctrl_desc = {
static int __maybe_unused atmel_pctrl_suspend(struct device *dev) static int __maybe_unused atmel_pctrl_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct atmel_pioctrl *atmel_pioctrl = dev_get_drvdata(dev);
struct atmel_pioctrl *atmel_pioctrl = platform_get_drvdata(pdev);
int i, j; int i, j;
/* /*
...@@ -897,8 +896,7 @@ static int __maybe_unused atmel_pctrl_suspend(struct device *dev) ...@@ -897,8 +896,7 @@ static int __maybe_unused atmel_pctrl_suspend(struct device *dev)
static int __maybe_unused atmel_pctrl_resume(struct device *dev) static int __maybe_unused atmel_pctrl_resume(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct atmel_pioctrl *atmel_pioctrl = dev_get_drvdata(dev);
struct atmel_pioctrl *atmel_pioctrl = platform_get_drvdata(pdev);
int i, j; int i, j;
for (i = 0; i < atmel_pioctrl->nbanks; i++) { for (i = 0; i < atmel_pioctrl->nbanks; i++) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册