From: Phil Elwell Date: Wed, 11 Apr 2018 09:59:17 +0000 (+0100) Subject: lan78xx: Correctly indicate invalid OTP X-Git-Tag: v4.14.35~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0e0cd653e6a5584b245f0d3de477f073b7cb1c0;p=platform%2Fkernel%2Flinux-rpi.git lan78xx: Correctly indicate invalid OTP [ Upstream commit 4bfc33807a9a02764bdd1e42e794b3b401240f27 ] lan78xx_read_otp tries to return -EINVAL in the event of invalid OTP content, but the value gets overwritten before it is returned and the read goes ahead anyway. Make the read conditional as it should be and preserve the error code. Fixes: 55d7de9de6c3 ("Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet device driver") Signed-off-by: Phil Elwell Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c index 89d82c4..1fb4648 100644 --- a/drivers/net/usb/lan78xx.c +++ b/drivers/net/usb/lan78xx.c @@ -928,7 +928,8 @@ static int lan78xx_read_otp(struct lan78xx_net *dev, u32 offset, offset += 0x100; else ret = -EINVAL; - ret = lan78xx_read_raw_otp(dev, offset, length, data); + if (!ret) + ret = lan78xx_read_raw_otp(dev, offset, length, data); } return ret;