staging: rtl8188eu: core: fixed msleep < 20ms can sleep for up to 20ms warning in rtw_efuse.c
This patch fixes following checkpatch.pl warning: WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt Signed-off-by: Jiayi Ye <yejiayily@gmail.comi> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2a80f84415
commit
c8cb5f2c78
|
@ -250,7 +250,7 @@ static void efuse_read_phymap_from_txpktbuf(
|
||||||
while (!(reg_0x143 = usb_read8(adapter, REG_TXPKTBUF_DBG)) &&
|
while (!(reg_0x143 = usb_read8(adapter, REG_TXPKTBUF_DBG)) &&
|
||||||
(passing_time = rtw_get_passing_time_ms(start)) < 1000) {
|
(passing_time = rtw_get_passing_time_ms(start)) < 1000) {
|
||||||
DBG_88E("%s polling reg_0x143:0x%02x, reg_0x106:0x%02x\n", __func__, reg_0x143, usb_read8(adapter, 0x106));
|
DBG_88E("%s polling reg_0x143:0x%02x, reg_0x106:0x%02x\n", __func__, reg_0x143, usb_read8(adapter, 0x106));
|
||||||
msleep(1);
|
usleep_range(1000, 2000);
|
||||||
}
|
}
|
||||||
|
|
||||||
lo32 = usb_read32(adapter, REG_PKTBUF_DBG_DATA_L);
|
lo32 = usb_read32(adapter, REG_PKTBUF_DBG_DATA_L);
|
||||||
|
|
Loading…
Reference in New Issue