projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d111e7a
)
gpio: arizona: Use local copy of pdata
author
Charles Keepax
<ckeepax@opensource.cirrus.com>
Mon, 22 Jul 2019 09:07:45 +0000
(10:07 +0100)
committer
Linus Walleij
<linus.walleij@linaro.org>
Mon, 5 Aug 2019 09:42:29 +0000
(11:42 +0200)
A local copy of the pdata exists and it should be used rather than
pulling a fresh copy.
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link:
https://lore.kernel.org/r/20190722090748.20807-1-ckeepax@opensource.cirrus.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-arizona.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-arizona.c
b/drivers/gpio/gpio-arizona.c
index
c07fad9
..
5640efe
100644
(file)
--- a/
drivers/gpio/gpio-arizona.c
+++ b/
drivers/gpio/gpio-arizona.c
@@
-142,7
+142,7
@@
static const struct gpio_chip template_chip = {
static int arizona_gpio_probe(struct platform_device *pdev)
{
struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
- struct arizona_pdata *pdata =
dev_get_platdata(arizona->dev)
;
+ struct arizona_pdata *pdata =
&arizona->pdata
;
struct arizona_gpio *arizona_gpio;
int ret;
@@
-177,7
+177,7
@@
static int arizona_gpio_probe(struct platform_device *pdev)
return -EINVAL;
}
- if (pdata
&& pdata
->gpio_base)
+ if (pdata->gpio_base)
arizona_gpio->gpio_chip.base = pdata->gpio_base;
else
arizona_gpio->gpio_chip.base = -1;