Re: [PATCH v1 1/1] pinctrl: renesas: rzg2l: Replace of_node_to_fwnode() with more suitable API

From: Lad, Prabhakar
Date: Fri Aug 23 2024 - 10:25:11 EST


On Fri, Aug 23, 2024 at 12:42 AM Andy Shevchenko
<andy.shevchenko@xxxxxxxxx> wrote:
>
> 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@xxxxxxxxx>
> ---
> drivers/pinctrl/renesas/pinctrl-rzg2l.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
Tested-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@xxxxxxxxxxxxxx>

Cheers,
Prabhakar

> diff --git a/drivers/pinctrl/renesas/pinctrl-rzg2l.c b/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> index 5e3d735a8570..73b55e096106 100644
> --- a/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> +++ b/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> @@ -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>
>
> @@ -2624,7 +2625,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;
> --
> 2.46.0
>
>