diff options
Diffstat (limited to 'drivers/usb/gadget/function/u_ether.c')
| -rw-r--r-- | drivers/usb/gadget/function/u_ether.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/gadget/function/u_ether.c b/drivers/usb/gadget/function/u_ether.c index fbe96ef1ac7a..c3cc6bd14e61 100644 --- a/drivers/usb/gadget/function/u_ether.c +++ b/drivers/usb/gadget/function/u_ether.c @@ -321,7 +321,7 @@ quiesce:  	/* data overrun */  	case -EOVERFLOW:  		dev->net->stats.rx_over_errors++; -		/* FALLTHROUGH */ +		fallthrough;  	default:  		dev->net->stats.rx_errors++; @@ -444,7 +444,7 @@ static void tx_complete(struct usb_ep *ep, struct usb_request *req)  	default:  		dev->net->stats.tx_errors++;  		VDBG(dev, "tx err %d\n", req->status); -		/* FALLTHROUGH */ +		fallthrough;  	case -ECONNRESET:		/* unlink */  	case -ESHUTDOWN:		/* disconnect etc */  		dev_kfree_skb_any(skb); @@ -730,7 +730,7 @@ static struct device_type gadget_type = {  	.name	= "gadget",  }; -/** +/*   * gether_setup_name - initialize one ethernet-over-usb link   * @g: gadget to associated with these links   * @ethaddr: NULL, or a buffer in which the ethernet address of the @@ -1012,7 +1012,7 @@ int gether_get_ifname(struct net_device *net, char *name, int len)  }  EXPORT_SYMBOL_GPL(gether_get_ifname); -/** +/*   * gether_cleanup - remove Ethernet-over-USB device   * Context: may sleep   *  |