staging: r8188eu: remove issue_action_spct_ch_switch()
authorMichael Straube <straube.linux@gmail.com>
Wed, 22 Sep 2021 20:03:46 +0000 (22:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Sep 2021 15:29:40 +0000 (17:29 +0200)
Function issue_action_spct_ch_switch() is not used, remove it.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210922200420.9693-14-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/core/rtw_mlme_ext.c
drivers/staging/r8188eu/include/rtw_mlme_ext.h

index 38ab1ab188723711c5b809591c8624f378ad4479..c35ca002b63f97a8419ed6db0517ddd6164a2fdf 100644 (file)
@@ -5756,65 +5756,6 @@ exit:
        return ret;
 }
 
-void issue_action_spct_ch_switch(struct adapter *padapter, u8 *ra, u8 new_ch, u8 ch_offset)
-{
-       struct xmit_frame                       *pmgntframe;
-       struct pkt_attrib                       *pattrib;
-       unsigned char                           *pframe;
-       struct rtw_ieee80211_hdr        *pwlanhdr;
-       __le16 *fctrl;
-       struct xmit_priv                        *pxmitpriv = &padapter->xmitpriv;
-       struct mlme_ext_priv    *pmlmeext = &padapter->mlmeextpriv;
-
-       DBG_88E(FUNC_NDEV_FMT" ra =%pM, ch:%u, offset:%u\n",
-               FUNC_NDEV_ARG(padapter->pnetdev), ra, new_ch, ch_offset);
-
-       pmgntframe = alloc_mgtxmitframe(pxmitpriv);
-       if (!pmgntframe)
-               return;
-
-       /* update attribute */
-       pattrib = &pmgntframe->attrib;
-       update_mgntframe_attrib(padapter, pattrib);
-
-       memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
-
-       pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
-       pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
-
-       fctrl = &pwlanhdr->frame_ctl;
-       *(fctrl) = 0;
-
-       memcpy(pwlanhdr->addr1, ra, ETH_ALEN); /* RA */
-       memcpy(pwlanhdr->addr2, myid(&padapter->eeprompriv), ETH_ALEN); /* TA */
-       memcpy(pwlanhdr->addr3, ra, ETH_ALEN); /* DA = RA */
-
-       SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
-       pmlmeext->mgnt_seq++;
-       SetFrameSubType(pframe, WIFI_ACTION);
-
-       pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
-       pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
-
-       /* category, action */
-       {
-               u8 category, action;
-               category = RTW_WLAN_CATEGORY_SPECTRUM_MGMT;
-               action = RTW_WLAN_ACTION_SPCT_CHL_SWITCH;
-
-               pframe = rtw_set_fixed_ie(pframe, 1, &category, &pattrib->pktlen);
-               pframe = rtw_set_fixed_ie(pframe, 1, &action, &pattrib->pktlen);
-       }
-
-       pframe = rtw_set_ie_ch_switch(pframe, &pattrib->pktlen, 0, new_ch, 0);
-       pframe = rtw_set_ie_secondary_ch_offset(pframe, &pattrib->pktlen,
-               hal_ch_offset_to_secondary_ch_offset(ch_offset));
-
-       pattrib->last_txcmdsz = pattrib->pktlen;
-
-       dump_mgntframe(padapter, pmgntframe);
-}
-
 void issue_action_BA(struct adapter *padapter, unsigned char *raddr, unsigned char action, unsigned short status)
 {
        u8 category = RTW_WLAN_CATEGORY_BACK;
index c00ed9553209e2230a59ae97694b5749c1be1058..89020f828e08e1f632bfa5c4c33a634999a2ef8a 100644 (file)
@@ -566,8 +566,6 @@ int issue_deauth(struct adapter *padapter, unsigned char *da,
                 unsigned short reason);
 int issue_deauth_ex(struct adapter *padapter, u8 *da, unsigned short reason,
                    int try_cnt, int wait_ms);
-void issue_action_spct_ch_switch(struct adapter *padapter, u8 *ra, u8 new_ch,
-                                u8 ch_offset);
 void issue_action_BA(struct adapter *padapter, unsigned char *raddr,
                     unsigned char action, unsigned short status);
 unsigned int send_delba(struct adapter *padapter, u8 initiator, u8 *addr);