From: Arnd Bergmann Date: Fri, 20 Apr 2012 10:56:14 +0000 (+0000) Subject: donauboe: replace excessive udelay with msleep X-Git-Tag: v3.5-rc1~109^2~336 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=32fd32a59cb6685324652ea0d79696c95453aebf;p=~emulex%2Finfiniband.git donauboe: replace excessive udelay with msleep No driver should spin the CPU for 10ms, so better use an msleep, which is allowed in the ->suspend function. Signed-off-by: Arnd Bergmann Signed-off-by: Mathieu Poirier Signed-off-by: David S. Miller --- diff --git a/drivers/net/irda/donauboe.c b/drivers/net/irda/donauboe.c index 4351296dde3..510b9c8d23a 100644 --- a/drivers/net/irda/donauboe.c +++ b/drivers/net/irda/donauboe.c @@ -1710,7 +1710,7 @@ toshoboe_gotosleep (struct pci_dev *pci_dev, pm_message_t crap) /* Flush all packets */ while ((i--) && (self->txpending)) - udelay (10000); + msleep(10); spin_lock_irqsave(&self->spinlock, flags);