[PATCH] regulator: core: lock device when calling device_is_bound()
From: Bartosz Golaszewski
Date: Mon May 18 2026 - 06:22:30 EST
device_is_bound() must be called with the device lock taken. Add missing
synchronization in regulator_resolve_supply().
Fixes: 66d228a2bf03 ("regulator: core: Don't use regulators as supplies until the parent is bound")
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxxxxxxxx>
---
drivers/regulator/core.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index dc5d67767336..1274a1ff8e17 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2240,10 +2240,12 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
* device get probe deferred and unregisters the supply.
*/
if (r->dev.parent && r->dev.parent != rdev->dev.parent) {
- if (!device_is_bound(r->dev.parent)) {
- put_device(&r->dev);
- ret = -EPROBE_DEFER;
- goto out;
+ scoped_guard(device, r->dev.parent) {
+ if (!device_is_bound(r->dev.parent)) {
+ put_device(&r->dev);
+ ret = -EPROBE_DEFER;
+ goto out;
+ }
}
}
--
2.47.3