mirror of https://gitee.com/openkylin/linux.git
staging: comedi: daqboard2000: prefer usleep_range()
The checkpatch.pl warns about two `udelay(x)` calls, one of 100 microseconds, and one of 10 microseconds. The 100 microseconds one is used when waiting for FPGA to become ready to accept firmware, and is not that critical, so replace it with a call to `usleep_range(100, 1000)`. The 10 microseconds one is called as each 16-bit word of firmware data is written. Replace it with a fairly tight `usleep_range(10, 20)` to avoid slowing down firmware loading too much. The firmware is fairly short, so this would only slow it down firmware loading by about 20 milliseconds or so. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0ef613473f
commit
cda2315000
|
@ -476,7 +476,7 @@ static int daqboard2000_poll_cpld(struct comedi_device *dev, int mask)
|
||||||
result = 1;
|
result = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
udelay(100);
|
usleep_range(100, 1000);
|
||||||
}
|
}
|
||||||
udelay(5);
|
udelay(5);
|
||||||
return result;
|
return result;
|
||||||
|
@ -486,7 +486,7 @@ static int daqboard2000_write_cpld(struct comedi_device *dev, int data)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
|
||||||
udelay(10);
|
usleep_range(10, 20);
|
||||||
writew(data, dev->mmio + 0x1000);
|
writew(data, dev->mmio + 0x1000);
|
||||||
if ((readw(dev->mmio + 0x1000) & DAQBOARD2000_CPLD_INIT) ==
|
if ((readw(dev->mmio + 0x1000) & DAQBOARD2000_CPLD_INIT) ==
|
||||||
DAQBOARD2000_CPLD_INIT) {
|
DAQBOARD2000_CPLD_INIT) {
|
||||||
|
|
Loading…
Reference in New Issue