[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200805102254.38665.david-b@pacbell.net>
Date: Sat, 10 May 2008 22:54:38 -0700
From: David Brownell <david-b@...bell.net>
To: Network development list <netdev@...r.kernel.org>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Pierre Ynard <linkfanel@...oo.fr>
Subject: [patch 2.6.26-rc1-git] rndis_host: longer timeout (bugzilla 10590)
From: Pierre Ynard <linkfanel@...oo.fr>
Some devices running some WinCE firmware (with SC_* Samsung processors
according to the SynCE project, verified on a HTC P3600 device) fail to
register because they apparently need extra time to respond correctly
to requests. Increase the existing delay to satisfy them. Based on code
from the SynCE project, on a suggestion of David Brownell.
This patch Works For Me(tm).
Resoves: http://bugzilla.kernel.org/show_bug.cgi?id=10590
Signed-off-by: Pierre Ynard <linkfanel@...oo.fr>
Signed-off-by: David Brownell <dbrownell@...rs.sourceforge.net>
--- 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;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists