staging: rtl8723bs: remove empty tracing function dump_rx_packet
authorFabio Aiuto <fabioaiuto83@gmail.com>
Wed, 7 Apr 2021 13:49:34 +0000 (15:49 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 7 Apr 2021 15:13:03 +0000 (17:13 +0200)
remove tracing function dump_rx_packet after DBG_871X removal.

Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com>
Link: https://lore.kernel.org/r/281afbaecdb9614c91e648b3a6fc2738a176e57a.1617802415.git.fabioaiuto83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_recv.c

index 2d1201b70ab112277f2de9a67c7ce908f5a77553..cd76fe2afcd04ca3bc3cb040ae86b7bb337ec31f 100644 (file)
@@ -1452,10 +1452,6 @@ validate_80211w_fail:
 
 }
 
-static inline void dump_rx_packet(u8 *ptr)
-{
-}
-
 static signed int validate_recv_frame(struct adapter *adapter, union recv_frame *precv_frame)
 {
        /* shall check frame subtype, to / from ds, da, bssid */
@@ -1492,12 +1488,6 @@ static signed int validate_recv_frame(struct adapter *adapter, union recv_frame
        pattrib->privacy = GetPrivacy(ptr);
        pattrib->order = GetOrder(ptr);
        rtw_hal_get_def_var(adapter, HAL_DEF_DBG_DUMP_RXPKT, &(bDumpRxPkt));
-       if (bDumpRxPkt == 1) /* dump all rx packets */
-               dump_rx_packet(ptr);
-       else if ((bDumpRxPkt == 2) && (type == WIFI_MGT_TYPE))
-               dump_rx_packet(ptr);
-       else if ((bDumpRxPkt == 3) && (type == WIFI_DATA_TYPE))
-               dump_rx_packet(ptr);
 
        switch (type) {
        case WIFI_MGT_TYPE: /* mgnt */
@@ -1529,8 +1519,6 @@ static signed int validate_recv_frame(struct adapter *adapter, union recv_frame
                        /*  get ether_type */
                        memcpy(&eth_type, ptr + pattrib->hdrlen + pattrib->iv_len + LLC_HEADER_SIZE, 2);
                        eth_type = ntohs((unsigned short) eth_type);
-                       if ((bDumpRxPkt == 4) && (eth_type == 0x888e))
-                               dump_rx_packet(ptr);
 #endif
                }
                break;