public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging:rtl8188eu Fix msleep < 20ms can sleep upto 20ms
@ 2017-09-05 10:06 Janani Sankara Babu
  2017-09-05 14:14 ` Greg KH
  2017-09-05 14:16 ` Joe Perches
  0 siblings, 2 replies; 3+ messages in thread
From: Janani Sankara Babu @ 2017-09-05 10:06 UTC (permalink / raw)
  To: gregkh; +Cc: goudapatilk, insafonov, devel, linux-kernel, Janani Sankara Babu

This patch solves the following warning shown by checkpatch script
Warning: msleep < 20ms can sleep for up to 20ms 

Signed-off-by: Janani Sankara Babu <jananis37@gmail.com>
---
 drivers/staging/rtl8188eu/core/rtw_pwrctrl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8188eu/core/rtw_pwrctrl.c b/drivers/staging/rtl8188eu/core/rtw_pwrctrl.c
index f86c9ce..78edc15 100644
--- a/drivers/staging/rtl8188eu/core/rtw_pwrctrl.c
+++ b/drivers/staging/rtl8188eu/core/rtw_pwrctrl.c
@@ -436,7 +436,7 @@ s32 LPS_RF_ON_check(struct adapter *padapter, u32 delay_ms)
 			DBG_88E("%s: Wait for FW LPS leave more than %u ms!!!\n", __func__, delay_ms);
 			break;
 		}
-		msleep(1);
+		usleep_range(0, 1000);
 	}
 
 	return err;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-09-05 14:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-05 10:06 [PATCH] staging:rtl8188eu Fix msleep < 20ms can sleep upto 20ms Janani Sankara Babu
2017-09-05 14:14 ` Greg KH
2017-09-05 14:16 ` Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox