Skip to content
Snippets Groups Projects
Commit 8de3b8e4 authored by Troy Kisky's avatar Troy Kisky
Browse files

sata: fix sata_Probe return value check


sata_probe returns 1 for failure, so don't checkout for < 0

fixes: f19f1ecb dm: sata: Support driver model with the 'sata' command

Signed-off-by: default avatarTroy Kisky <troy.kisky@boundarydevices.com>
parent aeded556
No related branches found
No related tags found
No related merge requests found
......@@ -107,8 +107,8 @@ static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
/* If the user has not yet run `sata init`, do it now */
if (sata_curr_device == -1) {
rc = sata_probe(0);
if (rc < 0)
return CMD_RET_FAILURE;
if (rc)
return rc;
sata_curr_device = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment