From: Guillaume GOURAT / Date: Fri, 21 Oct 2005 12:01:35 +0000 (+0200) Subject: [PATCH] USB: Kaweth.c udelay patch X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f2d45cd976682a3566c8cf30cefe91eb43ab6005;p=deliverable%2Flinux.git [PATCH] USB: Kaweth.c udelay patch On some arch (like arm) udelay cannot be called with value greater that 2000. Signed-off-by: Guillaume GOURAT / guillaume.gourat@nexvision.fr Signed-off-by: Oliver Neukum --- diff --git a/drivers/usb/net/kaweth.c b/drivers/usb/net/kaweth.c index c82655d3d448..6bef1be6b36c 100644 --- a/drivers/usb/net/kaweth.c +++ b/drivers/usb/net/kaweth.c @@ -469,7 +469,7 @@ static int kaweth_reset(struct kaweth_device *kaweth) 0, KAWETH_CONTROL_TIMEOUT); - udelay(10000); + mdelay(10); kaweth_dbg("kaweth_reset() returns %d.",result);