forked from Minki/linux
staging: comedi: ni_mio_common: usleep_range is preferred over udelay
Fix the checkpatch.pl issues. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2e2f7b7037
commit
8a5b817ff7
@ -962,7 +962,7 @@ static int ni_ao_wait_for_dma_load(struct comedi_device *dev)
|
||||
* If we poll too often, the pci bus activity seems
|
||||
* to slow the dma transfer down.
|
||||
*/
|
||||
udelay(10);
|
||||
usleep_range(10, 100);
|
||||
}
|
||||
if (i == timeout) {
|
||||
dev_err(dev->class_dev, "timed out waiting for dma load\n");
|
||||
@ -3629,7 +3629,7 @@ static int ni_cdo_inttrig(struct comedi_device *dev,
|
||||
if (ni_readl(dev, NI_M_CDIO_STATUS_REG) &
|
||||
NI_M_CDIO_STATUS_CDO_FIFO_FULL)
|
||||
break;
|
||||
udelay(10);
|
||||
usleep_range(10, 100);
|
||||
}
|
||||
if (i == timeout) {
|
||||
dev_err(dev->class_dev, "dma failed to fill cdo fifo!\n");
|
||||
|
Loading…
Reference in New Issue
Block a user