All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind
@ 2025-12-19 11:01 Johan Hovold
  2025-12-29 15:01 ` Andreas Kemnade
  2026-01-14 22:34 ` Kevin Hilman
  0 siblings, 2 replies; 3+ messages in thread
From: Johan Hovold @ 2025-12-19 11:01 UTC (permalink / raw)
  To: Aaro Koskinen, Andreas Kemnade, Kevin Hilman, Roger Quadros,
	Tony Lindgren
  Cc: linux-omap, linux-kernel, Johan Hovold, stable

Since commit c6e126de43e7 ("of: Keep track of populated platform
devices") child devices will not be created by of_platform_populate()
if the devices had previously been deregistered individually so that the
OF_POPULATED flag is still set in the corresponding OF nodes.

Switch to using of_platform_depopulate() instead of open coding so that
the child devices are created if the driver is rebound.

Fixes: c6e126de43e7 ("of: Keep track of populated platform devices")
Cc: stable@vger.kernel.org      # 3.16
Signed-off-by: Johan Hovold <johan@kernel.org>
---
 drivers/bus/omap-ocp2scp.c | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/drivers/bus/omap-ocp2scp.c b/drivers/bus/omap-ocp2scp.c
index e4dfda7b3b10..eee5ad191ea9 100644
--- a/drivers/bus/omap-ocp2scp.c
+++ b/drivers/bus/omap-ocp2scp.c
@@ -17,15 +17,6 @@
 #define OCP2SCP_TIMING 0x18
 #define SYNC2_MASK 0xf
 
-static int ocp2scp_remove_devices(struct device *dev, void *c)
-{
-	struct platform_device *pdev = to_platform_device(dev);
-
-	platform_device_unregister(pdev);
-
-	return 0;
-}
-
 static int omap_ocp2scp_probe(struct platform_device *pdev)
 {
 	int ret;
@@ -79,7 +70,7 @@ static int omap_ocp2scp_probe(struct platform_device *pdev)
 	pm_runtime_disable(&pdev->dev);
 
 err0:
-	device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
+	of_platform_depopulate(&pdev->dev);
 
 	return ret;
 }
@@ -87,7 +78,7 @@ static int omap_ocp2scp_probe(struct platform_device *pdev)
 static void omap_ocp2scp_remove(struct platform_device *pdev)
 {
 	pm_runtime_disable(&pdev->dev);
-	device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
+	of_platform_depopulate(&pdev->dev);
 }
 
 #ifdef CONFIG_OF
-- 
2.51.2


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

* Re: [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind
  2025-12-19 11:01 [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind Johan Hovold
@ 2025-12-29 15:01 ` Andreas Kemnade
  2026-01-14 22:34 ` Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Kemnade @ 2025-12-29 15:01 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Aaro Koskinen, Kevin Hilman, Roger Quadros, Tony Lindgren,
	linux-omap, linux-kernel, stable

On Fri, 19 Dec 2025 12:01:19 +0100
Johan Hovold <johan@kernel.org> wrote:

> Since commit c6e126de43e7 ("of: Keep track of populated platform
> devices") child devices will not be created by of_platform_populate()
> if the devices had previously been deregistered individually so that the
> OF_POPULATED flag is still set in the corresponding OF nodes.
> 
> Switch to using of_platform_depopulate() instead of open coding so that
> the child devices are created if the driver is rebound.
> 
> Fixes: c6e126de43e7 ("of: Keep track of populated platform devices")
> Cc: stable@vger.kernel.org      # 3.16
> Signed-off-by: Johan Hovold <johan@kernel.org>

Reviewed-by Andreas Kemnade <andreas@kemnade.info>

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

* Re: [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind
  2025-12-19 11:01 [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind Johan Hovold
  2025-12-29 15:01 ` Andreas Kemnade
@ 2026-01-14 22:34 ` Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Hilman @ 2026-01-14 22:34 UTC (permalink / raw)
  To: Aaro Koskinen, Andreas Kemnade, Roger Quadros, Tony Lindgren,
	Johan Hovold
  Cc: linux-omap, linux-kernel, stable


On Fri, 19 Dec 2025 12:01:19 +0100, Johan Hovold wrote:
> Since commit c6e126de43e7 ("of: Keep track of populated platform
> devices") child devices will not be created by of_platform_populate()
> if the devices had previously been deregistered individually so that the
> OF_POPULATED flag is still set in the corresponding OF nodes.
> 
> Switch to using of_platform_depopulate() instead of open coding so that
> the child devices are created if the driver is rebound.
> 
> [...]

Applied, thanks!

[1/1] bus: omap-ocp2scp: fix OF populate on driver rebind
      commit: 5eb63e9bb65d88abde647ced50fe6ad40c11de1a

Best regards,
-- 
Kevin Hilman <khilman@baylibre.com>


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

end of thread, other threads:[~2026-01-14 22:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-19 11:01 [PATCH] bus: omap-ocp2scp: fix OF populate on driver rebind Johan Hovold
2025-12-29 15:01 ` Andreas Kemnade
2026-01-14 22:34 ` Kevin Hilman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.