Re: [PATCH v1 1/1] gpio: zevio: Add missed label initialisation

From: Bartosz Golaszewski
Date: Sat Nov 16 2024 - 09:16:48 EST


On Fri, Nov 15, 2024 at 1:38 PM Andy Shevchenko
<andriy.shevchenko@xxxxxxxxxxxxxxx> wrote:
>
> Initialise the GPIO chip label correctly.
>

Same as altera - please improve the commit message by saying that this
was previously done by gpiolib-of.

Bart

> Fixes: cf8f4462e5fa ("gpio: zevio: drop of_gpio.h header")
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
> ---
> drivers/gpio/gpio-zevio.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c
> index 2de61337ad3b..d7230fd83f5d 100644
> --- a/drivers/gpio/gpio-zevio.c
> +++ b/drivers/gpio/gpio-zevio.c
> @@ -11,6 +11,7 @@
> #include <linux/io.h>
> #include <linux/mod_devicetable.h>
> #include <linux/platform_device.h>
> +#include <linux/property.h>
> #include <linux/slab.h>
> #include <linux/spinlock.h>
>
> @@ -169,6 +170,7 @@ static const struct gpio_chip zevio_gpio_chip = {
> /* Initialization */
> static int zevio_gpio_probe(struct platform_device *pdev)
> {
> + struct device *dev = &pdev->dev;
> struct zevio_gpio *controller;
> int status, i;
>
> @@ -180,6 +182,10 @@ static int zevio_gpio_probe(struct platform_device *pdev)
> controller->chip = zevio_gpio_chip;
> controller->chip.parent = &pdev->dev;
>
> + controller->chip.label = devm_kasprintf(dev, GFP_KERNEL, "%pfw", dev_fwnode(dev));
> + if (!controller->chip.label)
> + return -ENOMEM;
> +
> controller->regs = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(controller->regs))
> return dev_err_probe(&pdev->dev, PTR_ERR(controller->regs),
> --
> 2.43.0.rc1.1336.g36b5255a03ac
>