Skip to content

Commit

Permalink
net: usb: ax88179_178a: remove redundant assignment to variable ret
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and Jakub Kicinski committed May 10, 2020
1 parent 4f6cd04 commit d728e64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/usb/ax88179_178a.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d728e64

Please sign in to comment.