diff options
author | Tom Rini <trini@konsulko.com> | 2021-02-26 15:11:08 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-26 15:11:08 -0500 |
commit | 08cca188c120b8337600091c94dc0e211cd03e10 (patch) | |
tree | bb6980e98ba2b14919b38619994ffa6f65d839b5 /cmd | |
parent | b839fc9d47bbfc4ab4f0817a03e0e0e25b93e925 (diff) | |
parent | 0a7e5e5f103867789328067f87e34b25b26fc3b0 (diff) | |
download | u-boot-08cca188c120b8337600091c94dc0e211cd03e10.tar.gz |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-usbWIP/26Feb2021
- fastboot updates / fixes
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ab_select.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ab_select.c b/cmd/ab_select.c index 6298fcfb60..3e46663d6e 100644 --- a/cmd/ab_select.c +++ b/cmd/ab_select.c @@ -22,7 +22,8 @@ static int do_ab_select(struct cmd_tbl *cmdtp, int flag, int argc, /* Lookup the "misc" partition from argv[2] and argv[3] */ if (part_get_info_by_dev_and_name_or_num(argv[2], argv[3], - &dev_desc, &part_info) < 0) { + &dev_desc, &part_info, + false) < 0) { return CMD_RET_FAILURE; } |