mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 03:04:01 +08:00
staging: rtl8192u: Replace mdelay with msleep in rtl8192_usb_probe
rtl8192_usb_probe is not called in an interrupt handler nor holding a spinlock. The function mdelay in it can be replaced with msleep, to avoid busy wait. Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
This commit is contained in:
parent
357f862bd2
commit
23cb746b5e
@ -4998,7 +4998,7 @@ fail:
|
||||
kfree(priv->pFirmware);
|
||||
priv->pFirmware = NULL;
|
||||
rtl8192_usb_deleteendpoints(dev);
|
||||
mdelay(10);
|
||||
msleep(10);
|
||||
free_ieee80211(dev);
|
||||
|
||||
RT_TRACE(COMP_ERR, "wlan driver load failed\n");
|
||||
|
Loading…
Reference in New Issue
Block a user