* [PATCH] gpio: fix "gpio-line-names" property retrieval
@ 2017-12-15 8:09 Christophe Leroy
2017-12-15 9:44 ` Mika Westerberg
0 siblings, 1 reply; 2+ messages in thread
From: Christophe Leroy @ 2017-12-15 8:09 UTC (permalink / raw)
To: Linus Walleij, Mika Westerberg; +Cc: linux-kernel, linux-gpio, stable
Following commit 9427ecbed46cc ("gpio: Rework of_gpiochip_set_names()
to use device property accessors"), "gpio-line-names" DT property is
not retrieved anymore when chip->parent is not set by the driver.
This patch fixes that.
Fixes: 9427ecbed46cc ("gpio: Rework of_gpiochip_set_names()
to use device property accessors")
Cc: stable@vger.kernel.org
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
---
drivers/gpio/gpiolib-devprop.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/gpio/gpiolib-devprop.c b/drivers/gpio/gpiolib-devprop.c
index 27f383bda7d9..310dbc451a85 100644
--- a/drivers/gpio/gpiolib-devprop.c
+++ b/drivers/gpio/gpiolib-devprop.c
@@ -30,20 +30,24 @@ void devprop_gpiochip_set_names(struct gpio_chip *chip)
struct gpio_device *gdev = chip->gpiodev;
const char **names;
int ret, i;
+ struct device *dev;
- if (!chip->parent) {
+ if (chip->parent) {
+ dev = chip->parent;
+ } else if (gdev->dev.of_node) {
+ dev = &gdev->dev;
+ } else {
dev_warn(&gdev->dev, "GPIO chip parent is NULL\n");
return;
}
- ret = device_property_read_string_array(chip->parent, "gpio-line-names",
+ ret = device_property_read_string_array(dev, "gpio-line-names",
NULL, 0);
if (ret < 0)
return;
if (ret != gdev->ngpio) {
- dev_warn(chip->parent,
- "names %d do not match number of GPIOs %d\n", ret,
+ dev_warn(dev, "names %d do not match number of GPIOs %d\n", ret,
gdev->ngpio);
return;
}
@@ -52,10 +56,10 @@ void devprop_gpiochip_set_names(struct gpio_chip *chip)
if (!names)
return;
- ret = device_property_read_string_array(chip->parent, "gpio-line-names",
+ ret = device_property_read_string_array(dev, "gpio-line-names",
names, gdev->ngpio);
if (ret < 0) {
- dev_warn(chip->parent, "failed to read GPIO line names\n");
+ dev_warn(dev, "failed to read GPIO line names\n");
kfree(names);
return;
}
--
2.13.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gpio: fix "gpio-line-names" property retrieval
2017-12-15 8:09 [PATCH] gpio: fix "gpio-line-names" property retrieval Christophe Leroy
@ 2017-12-15 9:44 ` Mika Westerberg
0 siblings, 0 replies; 2+ messages in thread
From: Mika Westerberg @ 2017-12-15 9:44 UTC (permalink / raw)
To: Christophe Leroy; +Cc: Linus Walleij, linux-kernel, linux-gpio, stable
On Fri, Dec 15, 2017 at 09:09:15AM +0100, Christophe Leroy wrote:
> Following commit 9427ecbed46cc ("gpio: Rework of_gpiochip_set_names()
> to use device property accessors"), "gpio-line-names" DT property is
> not retrieved anymore when chip->parent is not set by the driver.
Thanks for taking care of this and sorry about the breakage.
I think this changelog should have few more words about the reason it
started to fail.
> This patch fixes that.
>
> Fixes: 9427ecbed46cc ("gpio: Rework of_gpiochip_set_names()
> to use device property accessors")
Don't wrap the Fixes line.
> Cc: stable@vger.kernel.org
> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
> ---
> drivers/gpio/gpiolib-devprop.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpio/gpiolib-devprop.c b/drivers/gpio/gpiolib-devprop.c
> index 27f383bda7d9..310dbc451a85 100644
> --- a/drivers/gpio/gpiolib-devprop.c
> +++ b/drivers/gpio/gpiolib-devprop.c
> @@ -30,20 +30,24 @@ void devprop_gpiochip_set_names(struct gpio_chip *chip)
> struct gpio_device *gdev = chip->gpiodev;
> const char **names;
> int ret, i;
> + struct device *dev;
>
> - if (!chip->parent) {
> + if (chip->parent) {
> + dev = chip->parent;
> + } else if (gdev->dev.of_node) {
> + dev = &gdev->dev;
> + } else {
I wonder if it would be better to change devprop_gpiochip_set_names()
take struct fwnode_handle as second parameter and use that instead of
chip->parent below? The reason why this happens now is that not all DT
enabled drivers seem to set chip->parent (which I guess is pretty valid
thing to do) but they still set of_node accordingly.
> dev_warn(&gdev->dev, "GPIO chip parent is NULL\n");
> return;
> }
>
> - ret = device_property_read_string_array(chip->parent, "gpio-line-names",
> + ret = device_property_read_string_array(dev, "gpio-line-names",
> NULL, 0);
> if (ret < 0)
> return;
>
> if (ret != gdev->ngpio) {
> - dev_warn(chip->parent,
> - "names %d do not match number of GPIOs %d\n", ret,
> + dev_warn(dev, "names %d do not match number of GPIOs %d\n", ret,
> gdev->ngpio);
> return;
> }
> @@ -52,10 +56,10 @@ void devprop_gpiochip_set_names(struct gpio_chip *chip)
> if (!names)
> return;
>
> - ret = device_property_read_string_array(chip->parent, "gpio-line-names",
> + ret = device_property_read_string_array(dev, "gpio-line-names",
> names, gdev->ngpio);
> if (ret < 0) {
> - dev_warn(chip->parent, "failed to read GPIO line names\n");
> + dev_warn(dev, "failed to read GPIO line names\n");
> kfree(names);
> return;
> }
> --
> 2.13.3
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-12-15 9:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-15 8:09 [PATCH] gpio: fix "gpio-line-names" property retrieval Christophe Leroy
2017-12-15 9:44 ` Mika Westerberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).