diff options
Diffstat (limited to 'drivers/net/usb/rndis_host.c')
| -rw-r--r-- | drivers/net/usb/rndis_host.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/usb/rndis_host.c b/drivers/net/usb/rndis_host.c index 21a7785cb8b..ae467f182c4 100644 --- a/drivers/net/usb/rndis_host.c +++ b/drivers/net/usb/rndis_host.c @@ -194,7 +194,7 @@ int rndis_command(struct usbnet *dev, struct rndis_msg_hdr *buf)  			dev_dbg(&info->control->dev,  				"rndis response error, code %d\n", retval);  		} -		msleep(2); +		msleep(20);  	}  	dev_dbg(&info->control->dev, "rndis response timeout\n");  	return -ETIMEDOUT; @@ -283,8 +283,8 @@ generic_rndis_bind(struct usbnet *dev, struct usb_interface *intf, int flags)  		struct rndis_set_c	*set_c;  		struct rndis_halt	*halt;  	} u; -	u32			tmp, phym_unspec; -	__le32			*phym; +	u32			tmp; +	__le32			phym_unspec, *phym;  	int			reply_len;  	unsigned char		*bp;  |