mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 01:38:22 +00:00
sandbox: eth-raw-os: successful return code is 0
all network drivers return 0 on the successful transmission. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
f5ead4c5fb
commit
f3384d7fbb
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ int sandbox_eth_raw_os_send(void *packet, int length,
|
|||
strerror(errno));
|
||||
return -errno;
|
||||
}
|
||||
return retval;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sandbox_eth_raw_os_recv(void *packet, int *length,
|
||||
|
|
Loading…
Reference in a new issue