linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio: gpio-xgene: simplify probe, return devm_gpiochip_add_data() directly
@ 2021-05-21 18:10 Alexandru Ardelean
  2021-05-23 18:31 ` Bartosz Golaszewski
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandru Ardelean @ 2021-05-21 18:10 UTC (permalink / raw)
  To: linux-gpio, linux-kernel; +Cc: linus.walleij, bgolaszewski, Alexandru Ardelean

The handling of the return value from devm_gpiochip_add_data() is a bit
redundant. It prints messages on error and success cases.
While the success message may be useful, it is more in the area of log
spam, and these can be printed with other forms of kernel logging.

This change does a direct return with devm_gpiochip_add_data() in the probe
function.

The platform_set_drvdata() is needed, as this driver uses the stored
private date in the PM suspend/resume routines.

Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
---
 drivers/gpio/gpio-xgene.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/drivers/gpio/gpio-xgene.c b/drivers/gpio/gpio-xgene.c
index 532b0df8a1f2..fb4b0c67aeef 100644
--- a/drivers/gpio/gpio-xgene.c
+++ b/drivers/gpio/gpio-xgene.c
@@ -159,7 +159,6 @@ static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
 static int xgene_gpio_probe(struct platform_device *pdev)
 {
 	struct xgene_gpio *gpio;
-	int err = 0;
 
 	gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
 	if (!gpio)
@@ -183,15 +182,7 @@ static int xgene_gpio_probe(struct platform_device *pdev)
 
 	platform_set_drvdata(pdev, gpio);
 
-	err = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
-	if (err) {
-		dev_err(&pdev->dev,
-			"failed to register gpiochip.\n");
-		return err;
-	}
-
-	dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
-	return 0;
+	return devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
 }
 
 static const struct of_device_id xgene_gpio_of_match[] = {
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gpio: gpio-xgene: simplify probe, return devm_gpiochip_add_data() directly
  2021-05-21 18:10 [PATCH] gpio: gpio-xgene: simplify probe, return devm_gpiochip_add_data() directly Alexandru Ardelean
@ 2021-05-23 18:31 ` Bartosz Golaszewski
  2021-05-24  7:21   ` Alexandru Ardelean
  0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2021-05-23 18:31 UTC (permalink / raw)
  To: Alexandru Ardelean; +Cc: linux-gpio, LKML, Linus Walleij

On Fri, May 21, 2021 at 8:10 PM Alexandru Ardelean
<aardelean@deviqon.com> wrote:
>
> The handling of the return value from devm_gpiochip_add_data() is a bit
> redundant. It prints messages on error and success cases.
> While the success message may be useful, it is more in the area of log
> spam, and these can be printed with other forms of kernel logging.
>
> This change does a direct return with devm_gpiochip_add_data() in the probe
> function.
>
> The platform_set_drvdata() is needed, as this driver uses the stored
> private date in the PM suspend/resume routines.
>
> Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
> ---
>  drivers/gpio/gpio-xgene.c | 11 +----------
>  1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/drivers/gpio/gpio-xgene.c b/drivers/gpio/gpio-xgene.c
> index 532b0df8a1f2..fb4b0c67aeef 100644
> --- a/drivers/gpio/gpio-xgene.c
> +++ b/drivers/gpio/gpio-xgene.c
> @@ -159,7 +159,6 @@ static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
>  static int xgene_gpio_probe(struct platform_device *pdev)
>  {
>         struct xgene_gpio *gpio;
> -       int err = 0;
>
>         gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
>         if (!gpio)
> @@ -183,15 +182,7 @@ static int xgene_gpio_probe(struct platform_device *pdev)
>
>         platform_set_drvdata(pdev, gpio);
>
> -       err = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
> -       if (err) {
> -               dev_err(&pdev->dev,
> -                       "failed to register gpiochip.\n");
> -               return err;
> -       }
> -
> -       dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
> -       return 0;
> +       return devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
>  }
>
>  static const struct of_device_id xgene_gpio_of_match[] = {
> --
> 2.31.1
>

Applied, thanks.

For the future: the subject should be: "gpio: xgene: ..." here and
everywhere else.

Bart

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] gpio: gpio-xgene: simplify probe, return devm_gpiochip_add_data() directly
  2021-05-23 18:31 ` Bartosz Golaszewski
@ 2021-05-24  7:21   ` Alexandru Ardelean
  0 siblings, 0 replies; 3+ messages in thread
From: Alexandru Ardelean @ 2021-05-24  7:21 UTC (permalink / raw)
  To: Bartosz Golaszewski; +Cc: linux-gpio, LKML, Linus Walleij

On Sun, 23 May 2021 at 21:31, Bartosz Golaszewski
<bgolaszewski@baylibre.com> wrote:
>
> On Fri, May 21, 2021 at 8:10 PM Alexandru Ardelean
> <aardelean@deviqon.com> wrote:
> >
> > The handling of the return value from devm_gpiochip_add_data() is a bit
> > redundant. It prints messages on error and success cases.
> > While the success message may be useful, it is more in the area of log
> > spam, and these can be printed with other forms of kernel logging.
> >
> > This change does a direct return with devm_gpiochip_add_data() in the probe
> > function.
> >
> > The platform_set_drvdata() is needed, as this driver uses the stored
> > private date in the PM suspend/resume routines.
> >
> > Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
> > ---
> >  drivers/gpio/gpio-xgene.c | 11 +----------
> >  1 file changed, 1 insertion(+), 10 deletions(-)
> >
> > diff --git a/drivers/gpio/gpio-xgene.c b/drivers/gpio/gpio-xgene.c
> > index 532b0df8a1f2..fb4b0c67aeef 100644
> > --- a/drivers/gpio/gpio-xgene.c
> > +++ b/drivers/gpio/gpio-xgene.c
> > @@ -159,7 +159,6 @@ static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
> >  static int xgene_gpio_probe(struct platform_device *pdev)
> >  {
> >         struct xgene_gpio *gpio;
> > -       int err = 0;
> >
> >         gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
> >         if (!gpio)
> > @@ -183,15 +182,7 @@ static int xgene_gpio_probe(struct platform_device *pdev)
> >
> >         platform_set_drvdata(pdev, gpio);
> >
> > -       err = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
> > -       if (err) {
> > -               dev_err(&pdev->dev,
> > -                       "failed to register gpiochip.\n");
> > -               return err;
> > -       }
> > -
> > -       dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
> > -       return 0;
> > +       return devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
> >  }
> >
> >  static const struct of_device_id xgene_gpio_of_match[] = {
> > --
> > 2.31.1
> >
>
> Applied, thanks.
>
> For the future: the subject should be: "gpio: xgene: ..." here and
> everywhere else.

ack
will keep that in mind

thanks :)
Alex

>
> Bart

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-24  7:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-21 18:10 [PATCH] gpio: gpio-xgene: simplify probe, return devm_gpiochip_add_data() directly Alexandru Ardelean
2021-05-23 18:31 ` Bartosz Golaszewski
2021-05-24  7:21   ` Alexandru Ardelean

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).