diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-05-09 22:41:11 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-05-10 11:12:55 -0700 |
commit | d728e6402c0023a46b8595e1736695517fd94a7a (patch) | |
tree | 857de5f2a1bb25902222553aa12b8f8287188e02 /drivers/net/usb | |
parent | 4f6cd04f2ded199931c44b3c95c4938618cd8b82 (diff) |
net: usb: ax88179_178a: remove redundant assignment to variable ret
The variable ret is being initializeed with a value that is never read
and it is being updated later with a new value. The initialization
is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r-- | drivers/net/usb/ax88179_178a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c index b05bb11a02cb..950711448f39 100644 --- a/drivers/net/usb/ax88179_178a.c +++ b/drivers/net/usb/ax88179_178a.c @@ -860,7 +860,7 @@ static int ax88179_set_eee(struct net_device *net, struct ethtool_eee *edata) { struct usbnet *dev = netdev_priv(net); struct ax88179_data *priv = (struct ax88179_data *)dev->data; - int ret = -EOPNOTSUPP; + int ret; priv->eee_enabled = edata->eee_enabled; if (!priv->eee_enabled) { |