]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
dm: regulator: fix missing quote in error message
authorDavid Lechner <dlechner@baylibre.com>
Thu, 19 Mar 2026 22:30:04 +0000 (17:30 -0500)
committerPeng Fan <peng.fan@nxp.com>
Mon, 23 Mar 2026 03:28:01 +0000 (11:28 +0800)
Fix a missing closing quote in the error message when a regulator name
is not unique.

Signed-off-by: David Lechner <dlechner@baylibre.com>
Reviewed-by: Julien Stephan <jstephan@baylibre.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
drivers/power/regulator/regulator-uclass.c

index 94c52cf555b295ecd7b99cb9eed30f11014bc769..1c7f75a9338cf493ed6c2a72fe411b850b16b7f2 100644 (file)
@@ -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;
        }