OSDN Git Service

staging: rtl8188eu: remove unused dump_txrpt_ccx_88e()
authorMichael Straube <straube.linux@gmail.com>
Sun, 29 Jul 2018 18:54:41 +0000 (20:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Jul 2018 09:01:01 +0000 (11:01 +0200)
The function dump_txrpt_ccx_88e() is nerver used, so remove it.
Discovered by cppcheck.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/rtl8188e_xmit.c
drivers/staging/rtl8188eu/include/rtl8188e_xmit.h

index 6883746..9b8a284 100644 (file)
 #include <drv_types.h>
 #include <rtl8188e_hal.h>
 
-void dump_txrpt_ccx_88e(void *buf)
-{
-       struct txrpt_ccx_88e *txrpt_ccx = buf;
-
-       DBG_88E("%s:\n"
-               "tag1:%u, pkt_num:%u, txdma_underflow:%u, int_bt:%u, int_tri:%u, int_ccx:%u\n"
-               "mac_id:%u, pkt_ok:%u, bmc:%u\n"
-               "retry_cnt:%u, lifetime_over:%u, retry_over:%u\n"
-               "ccx_qtime:%u\n"
-               "final_data_rate:0x%02x\n"
-               "qsel:%u, sw:0x%03x\n",
-               __func__, txrpt_ccx->tag1, txrpt_ccx->pkt_num,
-               txrpt_ccx->txdma_underflow, txrpt_ccx->int_bt,
-               txrpt_ccx->int_tri, txrpt_ccx->int_ccx,
-               txrpt_ccx->mac_id, txrpt_ccx->pkt_ok, txrpt_ccx->bmc,
-               txrpt_ccx->retry_cnt, txrpt_ccx->lifetime_over,
-               txrpt_ccx->retry_over, txrpt_ccx_qtime_88e(txrpt_ccx),
-               txrpt_ccx->final_data_rate, txrpt_ccx->qsel,
-               txrpt_ccx_sw_88e(txrpt_ccx)
-       );
-}
-
 void handle_txrpt_ccx_88e(struct adapter *adapter, u8 *buf)
 {
        struct txrpt_ccx_88e *txrpt_ccx = (struct txrpt_ccx_88e *)buf;
index 17e7b30..20d3548 100644 (file)
@@ -152,7 +152,6 @@ void rtl8188eu_xmit_tasklet(void *priv);
 s32 rtl8188eu_xmitframe_complete(struct adapter *padapter,
                                 struct xmit_priv *pxmitpriv);
 
-void dump_txrpt_ccx_88e(void *buf);
 void handle_txrpt_ccx_88e(struct adapter *adapter, u8 *buf);
 
 void _dbg_dump_tx_info(struct adapter *padapter, int frame_tag,