mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
part: Fix bogus return from part_get_info_by_dev_and_name
blk_get_device_by_str returns the device number on success. So we must check if the return was negative to determine an error. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
7194527b6a
commit
fe5a50910a
1 changed files with 1 additions and 1 deletions
|
@ -725,7 +725,7 @@ static int part_get_info_by_dev_and_name(const char *dev_iface,
|
|||
}
|
||||
|
||||
ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
|
||||
if (ret)
|
||||
if (ret < 0)
|
||||
goto cleanup;
|
||||
|
||||
ret = part_get_info_by_name(*dev_desc, part_str, part_info);
|
||||
|
|
Loading…
Reference in a new issue