* [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node
@ 2022-07-08 21:45 Andy Shevchenko
2022-07-08 21:45 ` [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe() Andy Shevchenko
2022-07-11 23:08 ` [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Rob Herring
0 siblings, 2 replies; 4+ messages in thread
From: Andy Shevchenko @ 2022-07-08 21:45 UTC (permalink / raw)
To: Rob Herring, Frank Rowand, devicetree, linux-kernel, linux-gpio
Cc: Rob Herring, Frank Rowand, Linus Walleij, Bartosz Golaszewski,
Andy Shevchenko
The OF node in the GPIO library is deprecated and soon will be removed.
GPIO library now accepts fwnode as a firmware node, so switch the module
to use it instead.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Bartosz Golaszewski <brgl@bgdev.pl>
---
v2: added tag (Bart), clarify the purpose in the commit message (Rob)
drivers/of/unittest.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 7f6bba18c515..5a842dfc27e8 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -1602,7 +1602,7 @@ static int unittest_gpio_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, devptr);
- devptr->chip.of_node = pdev->dev.of_node;
+ devptr->chip.fwnode = dev_fwnode(&pdev->dev);
devptr->chip.label = "of-unittest-gpio";
devptr->chip.base = -1; /* dynamic allocation */
devptr->chip.ngpio = 5;
@@ -1611,7 +1611,7 @@ static int unittest_gpio_probe(struct platform_device *pdev)
ret = gpiochip_add_data(&devptr->chip, NULL);
unittest(!ret,
- "gpiochip_add_data() for node @%pOF failed, ret = %d\n", devptr->chip.of_node, ret);
+ "gpiochip_add_data() for node @%pfw failed, ret = %d\n", devptr->chip.fwnode, ret);
if (!ret)
unittest_gpio_probe_pass_count++;
--
2.35.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe()
2022-07-08 21:45 [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Andy Shevchenko
@ 2022-07-08 21:45 ` Andy Shevchenko
2022-07-11 23:08 ` Rob Herring
2022-07-11 23:08 ` [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Rob Herring
1 sibling, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2022-07-08 21:45 UTC (permalink / raw)
To: Rob Herring, Frank Rowand, devicetree, linux-kernel, linux-gpio
Cc: Rob Herring, Frank Rowand, Linus Walleij, Bartosz Golaszewski,
Andy Shevchenko
On the ->remove() stage the callback uses physical device node instead of one
from GPIO chip and the variable name which is different to one used in
unittest_gpio_probe(). Make these consistent with unittest_gpio_probe().
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
v2: no changes
drivers/of/unittest.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 5a842dfc27e8..eafa8ffefbd0 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -1620,20 +1620,19 @@ static int unittest_gpio_probe(struct platform_device *pdev)
static int unittest_gpio_remove(struct platform_device *pdev)
{
- struct unittest_gpio_dev *gdev = platform_get_drvdata(pdev);
+ struct unittest_gpio_dev *devptr = platform_get_drvdata(pdev);
struct device *dev = &pdev->dev;
- struct device_node *np = pdev->dev.of_node;
- dev_dbg(dev, "%s for node @%pOF\n", __func__, np);
+ dev_dbg(dev, "%s for node @%pfw\n", __func__, devptr->chip.fwnode);
- if (!gdev)
+ if (!devptr)
return -EINVAL;
- if (gdev->chip.base != -1)
- gpiochip_remove(&gdev->chip);
+ if (devptr->chip.base != -1)
+ gpiochip_remove(&devptr->chip);
platform_set_drvdata(pdev, NULL);
- kfree(gdev);
+ kfree(devptr);
return 0;
}
--
2.35.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node
2022-07-08 21:45 [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Andy Shevchenko
2022-07-08 21:45 ` [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe() Andy Shevchenko
@ 2022-07-11 23:08 ` Rob Herring
1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2022-07-11 23:08 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Linus Walleij, linux-gpio, Frank Rowand, Bartosz Golaszewski,
Frank Rowand, devicetree, Rob Herring, linux-kernel
On Sat, 09 Jul 2022 00:45:38 +0300, Andy Shevchenko wrote:
> The OF node in the GPIO library is deprecated and soon will be removed.
> GPIO library now accepts fwnode as a firmware node, so switch the module
> to use it instead.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Reviewed-by: Bartosz Golaszewski <brgl@bgdev.pl>
> ---
> v2: added tag (Bart), clarify the purpose in the commit message (Rob)
> drivers/of/unittest.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe()
2022-07-08 21:45 ` [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe() Andy Shevchenko
@ 2022-07-11 23:08 ` Rob Herring
0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2022-07-11 23:08 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Frank Rowand, Linus Walleij, devicetree, Rob Herring,
Frank Rowand, linux-kernel, Bartosz Golaszewski, linux-gpio
On Sat, 09 Jul 2022 00:45:39 +0300, Andy Shevchenko wrote:
> On the ->remove() stage the callback uses physical device node instead of one
> from GPIO chip and the variable name which is different to one used in
> unittest_gpio_probe(). Make these consistent with unittest_gpio_probe().
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> v2: no changes
> drivers/of/unittest.c | 13 ++++++-------
> 1 file changed, 6 insertions(+), 7 deletions(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-07-11 23:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-08 21:45 [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Andy Shevchenko
2022-07-08 21:45 ` [PATCH v4 2/2] of: unittest: make unittest_gpio_remove() consistent with unittest_gpio_probe() Andy Shevchenko
2022-07-11 23:08 ` Rob Herring
2022-07-11 23:08 ` [PATCH v4 1/2] of: unittest: Switch to use fwnode instead of of_node Rob Herring
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).