mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
video: backlight: Fix log message in enable_sequence()
This has an extra argument. Remove it. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
165be50f5a
commit
4a978e86d7
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ static int enable_sequence(struct udevice *dev, int seq)
|
|||
ret = regulator_set_enable(priv->reg, true);
|
||||
if (ret) {
|
||||
log_debug("Cannot enable regulator for PWM '%s'\n",
|
||||
__func__, dev->name);
|
||||
dev->name);
|
||||
return log_ret(ret);
|
||||
}
|
||||
mdelay(120);
|
||||
|
|
Loading…
Reference in a new issue