rtl8188eu: Remove CONFIG_DEBUG_RTL871X - not defined

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-21 21:36:22 -05:00
parent 74c8d64df5
commit cc7f562a55
2 changed files with 0 additions and 68 deletions

View file

@ -7926,27 +7926,7 @@ static void process_80211d(PADAPTER padapter, WLAN_BSSID_EX *bssid)
}
chplan_ap.Len = i;
#ifdef CONFIG_DEBUG_RTL871X
i = 0;
DBG_88E("%s: AP[%s] channel plan {", __func__, bssid->Ssid.Ssid);
while ((i < chplan_ap.Len) && (chplan_ap.Channel[i] != 0)) {
DBG_88E("%02d,", chplan_ap.Channel[i]);
i++;
}
DBG_88E("}\n");
#endif
_rtw_memcpy(chplan_sta, pmlmeext->channel_set, sizeof(chplan_sta));
#ifdef CONFIG_DEBUG_RTL871X
i = 0;
DBG_88E("%s: STA channel plan {", __func__);
while ((i < MAX_CHANNEL_NUM) && (chplan_sta[i].ChannelNum != 0))
{
DBG_88E("%02d(%c),", chplan_sta[i].ChannelNum, chplan_sta[i].ScanType==SCAN_PASSIVE?'p':'a');
i++;
}
DBG_88E("}\n");
#endif
_rtw_memset(pmlmeext->channel_set, 0, sizeof(pmlmeext->channel_set));
chplan_new = pmlmeext->channel_set;
@ -8096,17 +8076,6 @@ static void process_80211d(PADAPTER padapter, WLAN_BSSID_EX *bssid)
}
pmlmeext->update_channel_plan_by_ap_done = 1;
#ifdef CONFIG_DEBUG_RTL871X
k = 0;
DBG_88E("%s: new STA channel plan {", __func__);
while ((k < MAX_CHANNEL_NUM) && (chplan_new[k].ChannelNum != 0))
{
DBG_88E("%02d(%c),", chplan_new[k].ChannelNum, chplan_new[k].ScanType==SCAN_PASSIVE?'p':'c');
k++;
}
DBG_88E("}\n");
#endif
}
/* If channel is used by AP, set channel scan type to active */