linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment
@ 2021-12-02 21:06 Andy Shevchenko
  2021-12-03  7:31 ` Pavel Machek
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2021-12-02 21:06 UTC (permalink / raw)
  To: Yihao Han, linux-leds, linux-kernel; +Cc: Pavel Machek, Andy Shevchenko

GPIO library does copy the of_node from the parent device of
the GPIO chip, there is no need to repeat this in the individual
drivers. Remove assignment here.

For the details one may look into the of_gpio_dev_init() implementation.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/leds/leds-tca6507.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/leds/leds-tca6507.c b/drivers/leds/leds-tca6507.c
index de8eed9b667d..1473ced8664c 100644
--- a/drivers/leds/leds-tca6507.c
+++ b/drivers/leds/leds-tca6507.c
@@ -641,9 +641,6 @@ static int tca6507_probe_gpios(struct device *dev,
 	tca->gpio.direction_output = tca6507_gpio_direction_output;
 	tca->gpio.set = tca6507_gpio_set_value;
 	tca->gpio.parent = dev;
-#ifdef CONFIG_OF_GPIO
-	tca->gpio.of_node = of_node_get(dev_of_node(dev));
-#endif
 	err = gpiochip_add_data(&tca->gpio, tca);
 	if (err) {
 		tca->gpio.ngpio = 0;
-- 
2.33.0


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

* Re: [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment
  2021-12-02 21:06 [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment Andy Shevchenko
@ 2021-12-03  7:31 ` Pavel Machek
  2021-12-03 12:18   ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2021-12-03  7:31 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: Yihao Han, linux-leds, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 412 bytes --]

Hi!

> GPIO library does copy the of_node from the parent device of
> the GPIO chip, there is no need to repeat this in the individual
> drivers. Remove assignment here.
> 
> For the details one may look into the of_gpio_dev_init()
> implementation.

So... where do you see of_gpio_dev_init called in this particular
case?

Best regards,
								Pavel
-- 
http://www.livejournal.com/~pavelmachek

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

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

* Re: [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment
  2021-12-03  7:31 ` Pavel Machek
@ 2021-12-03 12:18   ` Andy Shevchenko
  2021-12-10 13:23     ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2021-12-03 12:18 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Yihao Han, linux-leds, linux-kernel

On Fri, Dec 03, 2021 at 08:31:21AM +0100, Pavel Machek wrote:
> Hi!
> 
> > GPIO library does copy the of_node from the parent device of
> > the GPIO chip, there is no need to repeat this in the individual
> > drivers. Remove assignment here.
> > 
> > For the details one may look into the of_gpio_dev_init()
> > implementation.
> 
> So... where do you see of_gpio_dev_init called in this particular
> case?

Inside GPIO library as stated in the commit message.

  --> tca6507_probe_gpios()
    --> gpiochip_add_data()
      --> gpiochip_add_data_with_key()
        --> of_gpio_dev_init()


-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment
  2021-12-03 12:18   ` Andy Shevchenko
@ 2021-12-10 13:23     ` Andy Shevchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2021-12-10 13:23 UTC (permalink / raw)
  To: Pavel Machek; +Cc: Yihao Han, linux-leds, linux-kernel

On Fri, Dec 03, 2021 at 02:18:42PM +0200, Andy Shevchenko wrote:
> On Fri, Dec 03, 2021 at 08:31:21AM +0100, Pavel Machek wrote:

...

> > > For the details one may look into the of_gpio_dev_init()
> > > implementation.
> > 
> > So... where do you see of_gpio_dev_init called in this particular
> > case?
> 
> Inside GPIO library as stated in the commit message.
> 
>   --> tca6507_probe_gpios()
>     --> gpiochip_add_data()
>       --> gpiochip_add_data_with_key()
>         --> of_gpio_dev_init()

Pavel, do you have any other concerns? Can this be applied?

-- 
With Best Regards,
Andy Shevchenko



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

end of thread, other threads:[~2021-12-10 13:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-02 21:06 [PATCH v1 1/1] leds: tca6507: Get rid of duplicate of_node assignment Andy Shevchenko
2021-12-03  7:31 ` Pavel Machek
2021-12-03 12:18   ` Andy Shevchenko
2021-12-10 13:23     ` Andy Shevchenko

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