Commit 942eaa86 authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

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: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b33fc722
...@@ -209,7 +209,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter) ...@@ -209,7 +209,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
i = 10; i = 10;
tmp16 = r8712_read16(padapter, TCR); tmp16 = r8712_read16(padapter, TCR);
while (((tmp16 & _IMEM_CODE_DONE) == 0) && (i > 0)) { while (((tmp16 & _IMEM_CODE_DONE) == 0) && (i > 0)) {
udelay(10); usleep_range(10, 1000);
tmp16 = r8712_read16(padapter, TCR); tmp16 = r8712_read16(padapter, TCR);
i--; i--;
} }
...@@ -237,7 +237,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter) ...@@ -237,7 +237,7 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
i = 5; i = 5;
tmp16 = r8712_read16(padapter, TCR); tmp16 = r8712_read16(padapter, TCR);
while (((tmp16 & _EMEM_CODE_DONE) == 0) && (i > 0)) { while (((tmp16 & _EMEM_CODE_DONE) == 0) && (i > 0)) {
udelay(10); usleep_range(10, 1000);
tmp16 = r8712_read16(padapter, TCR); tmp16 = r8712_read16(padapter, TCR);
i--; i--;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment