diff options
| author | David Lechner <[email protected]> | 2026-03-19 17:30:04 -0500 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-03-23 11:28:01 +0800 |
| commit | 9936e1083dd8c45cd10e7497bd83933b28096dcf (patch) | |
| tree | 66f60dc91af1536ddd968013557a65fdeec6d148 /drivers/power | |
| parent | 67fc505228558efa19380542d801807fa9eee054 (diff) | |
dm: regulator: fix missing quote in error message
Fix a missing closing quote in the error message when a regulator name
is not unique.
Signed-off-by: David Lechner <[email protected]>
Reviewed-by: Julien Stephan <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers/power')
| -rw-r--r-- | drivers/power/regulator/regulator-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/regulator/regulator-uclass.c b/drivers/power/regulator/regulator-uclass.c index 94c52cf555b..1c7f75a9338 100644 --- a/drivers/power/regulator/regulator-uclass.c +++ b/drivers/power/regulator/regulator-uclass.c @@ -449,7 +449,7 @@ static int regulator_post_bind(struct udevice *dev) } if (!regulator_name_is_unique(dev, uc_pdata->name)) { - dev_err(dev, "'%s' has nonunique value: '%s\n", + dev_err(dev, "'%s' has nonunique value: '%s'\n", property, uc_pdata->name); return -EINVAL; } |
