Commit 23cb746b authored by Jia-Ju Bai's avatar Jia-Ju Bai Committed by Greg Kroah-Hartman

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: default avatarJia-Ju Bai <baijiaju1990@gmail.com>
parent 357f862b
...@@ -4998,7 +4998,7 @@ static int rtl8192_usb_probe(struct usb_interface *intf, ...@@ -4998,7 +4998,7 @@ static int rtl8192_usb_probe(struct usb_interface *intf,
kfree(priv->pFirmware); kfree(priv->pFirmware);
priv->pFirmware = NULL; priv->pFirmware = NULL;
rtl8192_usb_deleteendpoints(dev); rtl8192_usb_deleteendpoints(dev);
mdelay(10); msleep(10);
free_ieee80211(dev); free_ieee80211(dev);
RT_TRACE(COMP_ERR, "wlan driver load failed\n"); RT_TRACE(COMP_ERR, "wlan driver load failed\n");
......
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