Skip to content

Commit

Permalink
Staging: rtl8192su: changed check_reset_cnt to be static again
Browse files Browse the repository at this point in the history
variable check_reset_cnt in rtl819x_watchdog_wqcallback is now static
again.

also, little cosmetics.

Signed-off-by: Florian Schilhabel <florian.c.schilhabel@googlemail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Florian Schilhabel authored and Greg Kroah-Hartman committed May 11, 2010
1 parent df35bf6 commit ebbfda1
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions drivers/staging/rtl8192su/r8192U_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -5525,13 +5525,14 @@ void rtl819x_watchdog_wqcallback(struct work_struct *work)
struct net_device *dev = priv->ieee80211->dev;
struct ieee80211_device* ieee = priv->ieee80211;
RESET_TYPE ResetType = RESET_TYPE_NORESET;
u8 check_reset_cnt = 0;
static u8 check_reset_cnt;
u32 TotalRxBcnNum = 0;
u32 TotalRxDataNum = 0;
bool bBusyTraffic = false;

if(!priv->up)
return;
hal_dm_watchdog(dev);

/* to get busy traffic condition */
if (ieee->state == IEEE80211_LINKED) {
if (ieee->LinkDetectInfo.NumRxOkInPeriod > 666 ||
Expand All @@ -5545,23 +5546,15 @@ void rtl819x_watchdog_wqcallback(struct work_struct *work)

if (priv->ieee80211->state == IEEE80211_LINKED &&
priv->ieee80211->iw_mode == IW_MODE_INFRA) {
u32 TotalRxBcnNum = 0;
u32 TotalRxDataNum = 0;
rtl819x_update_rxcounts(priv, &TotalRxBcnNum, &TotalRxDataNum);
if ((TotalRxBcnNum + TotalRxDataNum) == 0) {
#ifdef TODO
if (rfState == eRfOff)
RT_TRACE(COMP_ERR, "========>%s()\n",
__func__);
#endif
RT_TRACE(COMP_ERR, "=>%s(): AP is power off,"
RT_TRACE(COMP_ERR, "%s(): AP is powered off,"
"connect another one\n", __func__);
/* Dot11d_Reset(dev); */
priv->ieee80211->state = IEEE80211_ASSOCIATING;
notify_wx_assoc_event(priv->ieee80211);
RemovePeerTS(priv->ieee80211,
priv->ieee80211->current_network.bssid);

ieee->is_roaming = true;
priv->ieee80211->link_change(dev);
queue_work(priv->ieee80211->wq,
Expand All @@ -5584,11 +5577,11 @@ void rtl819x_watchdog_wqcallback(struct work_struct *work)
(!priv->bDisableNormalResetCheck &&
/* This is control by OID set in Pomelo */
ResetType == RESET_TYPE_SILENT)))) {
RT_TRACE(COMP_RESET, "%s():priv->force_reset is %d,"
RT_TRACE(COMP_RESET, "%s(): priv->force_reset is %d,"
"priv->ResetProgress is %d, "
"priv->bForcedSilentReset is %d, "
"priv->bDisableNormalResetCheck is %d, "
"ResetType is %d\n",
"ResetType is %d",
__func__,
priv->force_reset,
priv->ResetProgress,
Expand All @@ -5600,7 +5593,6 @@ void rtl819x_watchdog_wqcallback(struct work_struct *work)
priv->force_reset = false;
priv->bForcedSilentReset = false;
priv->bResetInProgress = false;
RT_TRACE(COMP_TRACE, " <==RtUsbCheckForHangWorkItemCallback()\n");
}

void watch_dog_timer_callback(unsigned long data)
Expand Down

0 comments on commit ebbfda1

Please sign in to comment.