mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
Kconfig: Convert CMD_READ to Kconfig
Convert this option and enable it in sandbox. Also correct a bug which was introduced with the block-device driver model conversion. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
@@ -66,7 +66,7 @@ int do_read(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (blk_read(dev_desc, offset + blk, cnt, addr) < 0) {
|
||||
if (blk_dread(dev_desc, offset + blk, cnt, addr) < 0) {
|
||||
printf("Error reading blocks\n");
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user