]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
pinctrl: renesas: rzg2l: Replace of_node_to_fwnode() with more suitable API
authorAndy Shevchenko <andy.shevchenko@gmail.com>
Thu, 22 Aug 2024 23:01:04 +0000 (02:01 +0300)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 2 Sep 2024 08:12:36 +0000 (10:12 +0200)
of_node_to_fwnode() is a IRQ domain specific implementation of
of_fwnode_handle(). Replace the former with more suitable API.

Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Tested-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/20240822230104.707812-1-andy.shevchenko@gmail.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/pinctrl/renesas/pinctrl-rzg2l.c

index 2a73a8c374b35bcd2ba5bd32a850551253ed69a3..4a7f31cdcbe78dfce033e50b6296d3c7b4ef72c8 100644 (file)
@@ -16,6 +16,7 @@
 #include <linux/of.h>
 #include <linux/of_irq.h>
 #include <linux/platform_device.h>
+#include <linux/property.h>
 #include <linux/seq_file.h>
 #include <linux/spinlock.h>
 
@@ -2623,7 +2624,7 @@ static int rzg2l_gpio_register(struct rzg2l_pinctrl *pctrl)
 
        girq = &chip->irq;
        gpio_irq_chip_set_chip(girq, &rzg2l_gpio_irqchip);
-       girq->fwnode = of_node_to_fwnode(np);
+       girq->fwnode = dev_fwnode(pctrl->dev);
        girq->parent_domain = parent_domain;
        girq->child_to_parent_hwirq = rzg2l_gpio_child_to_parent_hwirq;
        girq->populate_parent_alloc_arg = rzg2l_gpio_populate_parent_fwspec;