diff options
Diffstat (limited to 'drivers/net/usb/cdc_ncm.c')
| -rw-r--r-- | drivers/net/usb/cdc_ncm.c | 26 | 
1 files changed, 10 insertions, 16 deletions
| diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c index dc0212c3cc28..86ba30ba35e8 100644 --- a/drivers/net/usb/cdc_ncm.c +++ b/drivers/net/usb/cdc_ncm.c @@ -837,7 +837,11 @@ int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_  	iface_no = ctx->data->cur_altsetting->desc.bInterfaceNumber; -	/* reset data interface */ +	/* Reset data interface. Some devices will not reset properly +	 * unless they are configured first.  Toggle the altsetting to +	 * force a reset +	 */ +	usb_set_interface(dev->udev, iface_no, data_altsetting);  	temp = usb_set_interface(dev->udev, iface_no, 0);  	if (temp) {  		dev_dbg(&intf->dev, "set interface failed\n"); @@ -984,8 +988,6 @@ EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting);  static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)  { -	int ret; -  	/* MBIM backwards compatible function? */  	if (cdc_ncm_select_altsetting(intf) != CDC_NCM_COMM_ALTSETTING_NCM)  		return -ENODEV; @@ -994,16 +996,7 @@ static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)  	 * Additionally, generic NCM devices are assumed to accept arbitrarily  	 * placed NDP.  	 */ -	ret = cdc_ncm_bind_common(dev, intf, CDC_NCM_DATA_ALTSETTING_NCM, 0); - -	/* -	 * We should get an event when network connection is "connected" or -	 * "disconnected". Set network connection in "disconnected" state -	 * (carrier is OFF) during attach, so the IP network stack does not -	 * start IPv6 negotiation and more. -	 */ -	usbnet_link_change(dev, 0, 0); -	return ret; +	return cdc_ncm_bind_common(dev, intf, CDC_NCM_DATA_ALTSETTING_NCM, 0);  }  static void cdc_ncm_align_tail(struct sk_buff *skb, size_t modulus, size_t remainder, size_t max) @@ -1586,7 +1579,8 @@ static void cdc_ncm_status(struct usbnet *dev, struct urb *urb)  static const struct driver_info cdc_ncm_info = {  	.description = "CDC NCM", -	.flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET, +	.flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET +			| FLAG_LINK_INTR,  	.bind = cdc_ncm_bind,  	.unbind = cdc_ncm_unbind,  	.manage_power = usbnet_manage_power, @@ -1599,7 +1593,7 @@ static const struct driver_info cdc_ncm_info = {  static const struct driver_info wwan_info = {  	.description = "Mobile Broadband Network Device",  	.flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET -			| FLAG_WWAN, +			| FLAG_LINK_INTR | FLAG_WWAN,  	.bind = cdc_ncm_bind,  	.unbind = cdc_ncm_unbind,  	.manage_power = usbnet_manage_power, @@ -1612,7 +1606,7 @@ static const struct driver_info wwan_info = {  static const struct driver_info wwan_noarp_info = {  	.description = "Mobile Broadband Network Device (NO ARP)",  	.flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET -			| FLAG_WWAN | FLAG_NOARP, +			| FLAG_LINK_INTR | FLAG_WWAN | FLAG_NOARP,  	.bind = cdc_ncm_bind,  	.unbind = cdc_ncm_unbind,  	.manage_power = usbnet_manage_power, | 
