mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-25 04:33:30 +08:00
dm: power: Use debug() for errors in regulator uclass
To reduce unnecessary code size in an uncommon code path, use debug() where possible(). The driver returns an error which indicates failure. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Przemyslaw Marczak <p.marczak@samsung.com> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
This commit is contained in:
parent
083fc83a4e
commit
59c26a9c22
@ -262,7 +262,7 @@ static int regulator_post_bind(struct udevice *dev)
|
||||
if (regulator_name_is_unique(dev, uc_pdata->name))
|
||||
return 0;
|
||||
|
||||
error("\"%s\" of dev: \"%s\", has nonunique value: \"%s\"",
|
||||
debug("\"%s\" of dev: \"%s\", has nonunique value: \"%s\"",
|
||||
property, dev->name, uc_pdata->name);
|
||||
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user