From: Phil Elwell Date: Tue, 28 Nov 2017 12:02:37 +0000 (+0000) Subject: lan78xx: Correctly indicate invalid OTP X-Git-Tag: archive/raspbian/4.9.82-1+deb9u3+rpi1_jessie~5^2~59 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=20e93aa9299ec683265b5a3f738daa1aeabd2b96;p=linux-4.9.git lan78xx: Correctly indicate invalid OTP 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. Signed-off-by: Phil Elwell --- diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c index aac8f2069087..0798b260c38d 100644 --- a/drivers/net/usb/lan78xx.c +++ b/drivers/net/usb/lan78xx.c @@ -874,7 +874,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;