staging: rtl8723au: core: Remove unnecessary functions

Drop functions that are declared but are not being used anywhere.

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Amitoj Kaur Chawla 2015-10-27 14:02:37 +05:30 committed by Greg Kroah-Hartman
parent efc19548e8
commit f386ee1737
1 changed files with 0 additions and 37 deletions

View File

@ -1154,11 +1154,6 @@ int rtw_acl_remove_sta23a(struct rtw_adapter *padapter, u8 *addr)
return 0;
}
static void update_bcn_fixed_ie(struct rtw_adapter *padapter)
{
DBG_8723A("%s\n", __func__);
}
static void update_bcn_erpinfo_ie(struct rtw_adapter *padapter)
{
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
@ -1192,21 +1187,6 @@ static void update_bcn_erpinfo_ie(struct rtw_adapter *padapter)
}
}
static void update_bcn_htcap_ie(struct rtw_adapter *padapter)
{
DBG_8723A("%s\n", __func__);
}
static void update_bcn_htinfo_ie(struct rtw_adapter *padapter)
{
DBG_8723A("%s\n", __func__);
}
static void update_bcn_rsn_ie(struct rtw_adapter *padapter)
{
DBG_8723A("%s\n", __func__);
}
static void update_bcn_wpa_ie(struct rtw_adapter *padapter)
{
DBG_8723A("%s\n", __func__);
@ -1263,11 +1243,6 @@ void update_beacon23a(struct rtw_adapter *padapter, u8 ie_id, u8 *oui, u8 tx)
spin_lock_bh(&pmlmepriv->bcn_update_lock);
switch (ie_id) {
case 0xFF:
/* 8: TimeStamp, 2: Beacon Interval 2:Capability */
update_bcn_fixed_ie(padapter);
break;
case WLAN_EID_TIM:
update_BCNTIM(padapter);
break;
@ -1276,18 +1251,6 @@ void update_beacon23a(struct rtw_adapter *padapter, u8 ie_id, u8 *oui, u8 tx)
update_bcn_erpinfo_ie(padapter);
break;
case WLAN_EID_HT_CAPABILITY:
update_bcn_htcap_ie(padapter);
break;
case WLAN_EID_RSN:
update_bcn_rsn_ie(padapter);
break;
case WLAN_EID_HT_OPERATION:
update_bcn_htinfo_ie(padapter);
break;
case WLAN_EID_VENDOR_SPECIFIC:
update_bcn_vendor_spec_ie(padapter, oui);
break;