]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net/smc911x: fix return from smc911x_send
authorMaxim Uvarov <maxim.uvarov@linaro.org>
Tue, 26 Dec 2023 15:46:13 +0000 (21:46 +0600)
committerTom Rini <trini@konsulko.com>
Thu, 11 Jan 2024 16:24:58 +0000 (11:24 -0500)
return value of smc911x_send is ignored, but on sucesseful
send we need return 0 and or error -ETIMEOUT, not opposite.

Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/net/smc911x.c

index 5c5ad8b84a988fb9b9e722c8b515fa06daf086dc..616b7ce174f43f48bef61af242e9a4b35487f808 100644 (file)
@@ -403,7 +403,7 @@ static int smc911x_send(struct udevice *dev, void *packet, int length)
 
        ret = smc911x_send_common(priv, packet, length);
 
-       return ret ? 0 : -ETIMEDOUT;
+       return ret ? -ETIMEDOUT : 0;
 }
 
 static int smc911x_recv(struct udevice *dev, int flags, uchar **packetp)