mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
video: Check return value in pwm_backlight_of_to_plat()
This cannot actually fail, but check the value anyway to keep coverity happy. Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Coverity (CID: 316351)
This commit is contained in:
parent
9d9bec216d
commit
92598bdbae
1 changed files with 4 additions and 2 deletions
|
@ -235,8 +235,10 @@ static int pwm_backlight_of_to_plat(struct udevice *dev)
|
|||
priv->levels = malloc(len);
|
||||
if (!priv->levels)
|
||||
return log_ret(-ENOMEM);
|
||||
dev_read_u32_array(dev, "brightness-levels", priv->levels,
|
||||
count);
|
||||
ret = dev_read_u32_array(dev, "brightness-levels", priv->levels,
|
||||
count);
|
||||
if (ret)
|
||||
return log_msg_ret("levels", ret);
|
||||
priv->num_levels = count;
|
||||
priv->default_level = priv->levels[index];
|
||||
priv->max_level = priv->levels[count - 1];
|
||||
|
|
Loading…
Reference in a new issue