forked from Minki/linux
staging: rtl8712: usleep_range is preferred over udelay
Fix checkpatch.pl issue: "CHECK: usleep_range is preferred over udelay; see Documentation/timers/timers-howto.txt". Replace `udelay()` with a call to `usleep_range()` with a reasonable upper limit determined by the other sleeping functions present. Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b33fc72291
commit
942eaa867f
@ -209,7 +209,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
|
||||
i = 10;
|
||||
tmp16 = r8712_read16(padapter, TCR);
|
||||
while (((tmp16 & _IMEM_CODE_DONE) == 0) && (i > 0)) {
|
||||
udelay(10);
|
||||
usleep_range(10, 1000);
|
||||
tmp16 = r8712_read16(padapter, TCR);
|
||||
i--;
|
||||
}
|
||||
@ -237,7 +237,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
|
||||
i = 5;
|
||||
tmp16 = r8712_read16(padapter, TCR);
|
||||
while (((tmp16 & _EMEM_CODE_DONE) == 0) && (i > 0)) {
|
||||
udelay(10);
|
||||
usleep_range(10, 1000);
|
||||
tmp16 = r8712_read16(padapter, TCR);
|
||||
i--;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user