Commit e8ab621e authored by Larry Finger's avatar Larry Finger Committed by Greg Kroah-Hartman

staging: r8188eu: Replace wrapper rtw_yield_os

a simple yield() is sufficient.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b2dcff2a
...@@ -6333,7 +6333,7 @@ unsigned int send_beacon(struct adapter *padapter) ...@@ -6333,7 +6333,7 @@ unsigned int send_beacon(struct adapter *padapter)
issue_beacon(padapter, 100); issue_beacon(padapter, 100);
issue++; issue++;
do { do {
rtw_yield_os(); yield();
rtw_hal_get_hwreg(padapter, HW_VAR_BCN_VALID, (u8 *)(&bxmitok)); rtw_hal_get_hwreg(padapter, HW_VAR_BCN_VALID, (u8 *)(&bxmitok));
poll++; poll++;
} while ((poll%10) != 0 && !bxmitok && !padapter->bSurpriseRemoved && !padapter->bDriverStopped); } while ((poll%10) != 0 && !bxmitok && !padapter->bSurpriseRemoved && !padapter->bDriverStopped);
......
...@@ -655,7 +655,7 @@ _func_enter_; ...@@ -655,7 +655,7 @@ _func_enter_;
SetFwRsvdPagePkt(adapt, false); SetFwRsvdPagePkt(adapt, false);
DLBcnCount++; DLBcnCount++;
do { do {
rtw_yield_os(); yield();
/* mdelay(10); */ /* mdelay(10); */
/* check rsvd page download OK. */ /* check rsvd page download OK. */
rtw_hal_get_hwreg(adapt, HW_VAR_BCN_VALID, (u8 *)(&bcn_valid)); rtw_hal_get_hwreg(adapt, HW_VAR_BCN_VALID, (u8 *)(&bcn_valid));
......
...@@ -277,8 +277,6 @@ void rtw_sleep_schedulable(int ms); ...@@ -277,8 +277,6 @@ void rtw_sleep_schedulable(int ms);
u32 rtw_atoi(u8 *s); u32 rtw_atoi(u8 *s);
void rtw_yield_os(void);
static inline unsigned char _cancel_timer_ex(struct timer_list *ptimer) static inline unsigned char _cancel_timer_ex(struct timer_list *ptimer)
{ {
return del_timer_sync(ptimer); return del_timer_sync(ptimer);
......
...@@ -245,11 +245,6 @@ void rtw_sleep_schedulable(int ms) ...@@ -245,11 +245,6 @@ void rtw_sleep_schedulable(int ms)
return; return;
} }
void rtw_yield_os(void)
{
yield();
}
#define RTW_SUSPEND_LOCK_NAME "rtw_wifi" #define RTW_SUSPEND_LOCK_NAME "rtw_wifi"
inline void rtw_suspend_lock_init(void) inline void rtw_suspend_lock_init(void)
......
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