* [PATCH 1/2] regulator: bq257xx: fix OF node reference imbalance [not found] <20260407094156.2573027-1-johan@kernel.org> @ 2026-04-07 9:41 ` Johan Hovold 2026-04-07 9:41 ` [PATCH 2/2] regulator: rk808: " Johan Hovold 1 sibling, 0 replies; 3+ messages in thread From: Johan Hovold @ 2026-04-07 9:41 UTC (permalink / raw) To: Mark Brown Cc: Liam Girdwood, Douglas Anderson, linux-kernel, Johan Hovold, stable, Chris Morgan The driver reuses the OF node of the parent multi-function device but fails to take another reference to balance the one dropped by the platform bus code when unbinding the MFD and deregistering the child devices. Fix this by using the intended helper for reusing OF nodes. Fixes: 981dd162b635 ("regulator: bq257xx: Add bq257xx boost regulator driver") Cc: stable@vger.kernel.org # 6.18 Cc: Chris Morgan <macromorgan@hotmail.com> Signed-off-by: Johan Hovold <johan@kernel.org> --- drivers/regulator/bq257xx-regulator.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/regulator/bq257xx-regulator.c b/drivers/regulator/bq257xx-regulator.c index dab8f1ab4450..711dbe045383 100644 --- a/drivers/regulator/bq257xx-regulator.c +++ b/drivers/regulator/bq257xx-regulator.c @@ -142,8 +142,7 @@ static int bq257xx_regulator_probe(struct platform_device *pdev) struct device_node *np = dev->of_node; struct regulator_config cfg = {}; - pdev->dev.of_node = pdev->dev.parent->of_node; - pdev->dev.of_node_reused = true; + device_set_of_node_from_dev(&pdev->dev, pdev->dev.parent); pdata = devm_kzalloc(&pdev->dev, sizeof(struct bq257xx_reg_data), GFP_KERNEL); if (!pdata) -- 2.52.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] regulator: rk808: fix OF node reference imbalance [not found] <20260407094156.2573027-1-johan@kernel.org> 2026-04-07 9:41 ` [PATCH 1/2] regulator: bq257xx: fix OF node reference imbalance Johan Hovold @ 2026-04-07 9:41 ` Johan Hovold 2026-04-07 10:41 ` Sebastian Reichel 1 sibling, 1 reply; 3+ messages in thread From: Johan Hovold @ 2026-04-07 9:41 UTC (permalink / raw) To: Mark Brown Cc: Liam Girdwood, Douglas Anderson, linux-kernel, Johan Hovold, stable, Sebastian Reichel The driver reuses the OF node of the parent multi-function device but fails to take another reference to balance the one dropped by the platform bus code when unbinding the MFD and deregistering the child devices. Fix this by using the intended helper for reusing OF nodes. Fixes: 5111c931f36c ("regulator: rk808: cleanup parent device usage") Cc: stable@vger.kernel.org # 6.5 Cc: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Johan Hovold <johan@kernel.org> --- drivers/regulator/rk808-regulator.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c index e66408f23bb6..1e956153427e 100644 --- a/drivers/regulator/rk808-regulator.c +++ b/drivers/regulator/rk808-regulator.c @@ -2114,8 +2114,7 @@ static int rk808_regulator_probe(struct platform_device *pdev) struct regmap *regmap; int ret, i, nregulators; - pdev->dev.of_node = pdev->dev.parent->of_node; - pdev->dev.of_node_reused = true; + device_set_of_node_from_dev(&pdev->dev, pdev->dev.parent); regmap = dev_get_regmap(pdev->dev.parent, NULL); if (!regmap) -- 2.52.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/2] regulator: rk808: fix OF node reference imbalance 2026-04-07 9:41 ` [PATCH 2/2] regulator: rk808: " Johan Hovold @ 2026-04-07 10:41 ` Sebastian Reichel 0 siblings, 0 replies; 3+ messages in thread From: Sebastian Reichel @ 2026-04-07 10:41 UTC (permalink / raw) To: Johan Hovold Cc: Mark Brown, Liam Girdwood, Douglas Anderson, linux-kernel, stable [-- Attachment #1: Type: text/plain, Size: 1407 bytes --] Hi, On Tue, Apr 07, 2026 at 11:41:56AM +0200, Johan Hovold wrote: > The driver reuses the OF node of the parent multi-function device but > fails to take another reference to balance the one dropped by the > platform bus code when unbinding the MFD and deregistering the child > devices. > > Fix this by using the intended helper for reusing OF nodes. > > Fixes: 5111c931f36c ("regulator: rk808: cleanup parent device usage") > Cc: stable@vger.kernel.org # 6.5 > Cc: Sebastian Reichel <sebastian.reichel@collabora.com> > Signed-off-by: Johan Hovold <johan@kernel.org> > --- Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> -- Sebastian > drivers/regulator/rk808-regulator.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c > index e66408f23bb6..1e956153427e 100644 > --- a/drivers/regulator/rk808-regulator.c > +++ b/drivers/regulator/rk808-regulator.c > @@ -2114,8 +2114,7 @@ static int rk808_regulator_probe(struct platform_device *pdev) > struct regmap *regmap; > int ret, i, nregulators; > > - pdev->dev.of_node = pdev->dev.parent->of_node; > - pdev->dev.of_node_reused = true; > + device_set_of_node_from_dev(&pdev->dev, pdev->dev.parent); > > regmap = dev_get_regmap(pdev->dev.parent, NULL); > if (!regmap) > -- > 2.52.0 > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-07 10:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260407094156.2573027-1-johan@kernel.org>
2026-04-07 9:41 ` [PATCH 1/2] regulator: bq257xx: fix OF node reference imbalance Johan Hovold
2026-04-07 9:41 ` [PATCH 2/2] regulator: rk808: " Johan Hovold
2026-04-07 10:41 ` Sebastian Reichel
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox