mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 17:14:14 +08:00
staging: comedi: dt2801: usleep_range is preferred over udelay
Fix the checkpatch.pl issue: CHECK: usleep_range is preferred over udelay Signed-off-by: Saber Rezvani <irsaber@gmail.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9fbe9b06e7
commit
4f280a69e9
@ -343,7 +343,7 @@ static int dt2801_reset(struct comedi_device *dev)
|
||||
outb_p(DT_C_STOP, dev->iobase + DT2801_CMD);
|
||||
|
||||
/* dt2801_wait_for_ready(dev); */
|
||||
udelay(100);
|
||||
usleep_range(100, 200);
|
||||
timeout = 10000;
|
||||
do {
|
||||
stat = inb_p(dev->iobase + DT2801_STATUS);
|
||||
@ -358,7 +358,7 @@ static int dt2801_reset(struct comedi_device *dev)
|
||||
outb_p(DT_C_RESET, dev->iobase + DT2801_CMD);
|
||||
/* dt2801_writecmd(dev,DT_C_RESET); */
|
||||
|
||||
udelay(100);
|
||||
usleep_range(100, 200);
|
||||
timeout = 10000;
|
||||
do {
|
||||
stat = inb_p(dev->iobase + DT2801_STATUS);
|
||||
|
Loading…
Reference in New Issue
Block a user