public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] gpio: tegra186: Set fwnode of the GPIO chip
@ 2023-10-09 17:38 Dipen Patel
  2023-10-10 13:13 ` Andy Shevchenko
  0 siblings, 1 reply; 7+ messages in thread
From: Dipen Patel @ 2023-10-09 17:38 UTC (permalink / raw)
  To: linus.walleij, brgl, andy, thierry.reding, jonathanh, linux-gpio,
	linux-tegra, linux-kernel
  Cc: Dipen Patel

Any driver that depends on the GPIO match function to locate the GPIO
controller, it has to use the fwnode from the gpio_chip structure. But
with [1], it is GPIO providers job to set any members of the gpio_chip
structure. This patch addresses that.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git/patch/drivers/gpio/gpiolib.c?id=daecca4b8433d47f0db4933bcc0f283d530ba22e

Signed-off-by: Dipen Patel <dipenp@nvidia.com>
---
 drivers/gpio/gpio-tegra186.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/gpio/gpio-tegra186.c b/drivers/gpio/gpio-tegra186.c
index d87dd06db40d..86ad34e07841 100644
--- a/drivers/gpio/gpio-tegra186.c
+++ b/drivers/gpio/gpio-tegra186.c
@@ -989,6 +989,12 @@ static int tegra186_gpio_probe(struct platform_device *pdev)
 		offset += port->pins;
 	}
 
+	/*
+	 * This is needed for driver using gpio device matching where it
+	 * has to use gpio_chip fwnode to match the gpio controller.
+	 */
+	gpio->gpio.fwnode = of_node_to_fwnode(pdev->dev.of_node);
+
 	return devm_gpiochip_add_data(&pdev->dev, &gpio->gpio, gpio);
 }
 
-- 
2.25.1


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

end of thread, other threads:[~2023-10-10 15:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-09 17:38 [PATCH 1/1] gpio: tegra186: Set fwnode of the GPIO chip Dipen Patel
2023-10-10 13:13 ` Andy Shevchenko
2023-10-10 13:48   ` Andy Shevchenko
2023-10-10 14:13     ` Andy Shevchenko
2023-10-10 14:25       ` Andy Shevchenko
2023-10-10 15:10         ` Bartosz Golaszewski
2023-10-10 15:18           ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox