Merge "net: usb: Initialize retval with zero as it might be used uninitialized"

This commit is contained in:
qctecmdr 2020-08-05 00:53:54 -07:00 committed by Gerrit - the friendly Code Review server
commit 4bd3d726a3

View file

@ -1364,7 +1364,7 @@ netdev_tx_t usbnet_start_xmit (struct sk_buff *skb,
struct skb_data *entry;
struct driver_info *info = dev->driver_info;
unsigned long flags;
int retval;
int retval = 0;
if (skb)
skb_tx_timestamp(skb);