staging: rtl8723au: Remove unused dump_txrpt_ccx_8723a()
authorJes Sorensen <Jes.Sorensen@redhat.com>
Tue, 24 Jun 2014 13:03:25 +0000 (15:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 24 Jun 2014 17:50:59 +0000 (13:50 -0400)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/hal/rtl8723a_xmit.c
drivers/staging/rtl8723au/include/rtl8723a_xmit.h

index d7612cc..6ea2f9e 100644 (file)
 #include <drv_types.h>
 #include <rtl8723a_hal.h>
 
-void dump_txrpt_ccx_8723a(void *buf)
-{
-       struct txrpt_ccx_8723a *txrpt_ccx = buf;
-
-       DBG_8723A("%s:\n"
-               "tag1:%u, rsvd:%u, int_bt:%u, int_tri:%u, int_ccx:%u\n"
-               "mac_id:%u, pkt_drop:%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->rsvd, txrpt_ccx->int_bt, txrpt_ccx->int_tri, txrpt_ccx->int_ccx
-               , txrpt_ccx->mac_id, txrpt_ccx->pkt_drop, txrpt_ccx->pkt_ok, txrpt_ccx->bmc
-               , txrpt_ccx->retry_cnt, txrpt_ccx->lifetime_over, txrpt_ccx->retry_over
-               , txrpt_ccx_qtime_8723a(txrpt_ccx)
-               , txrpt_ccx->final_data_rate
-               , txrpt_ccx->qsel, txrpt_ccx_sw_8723a(txrpt_ccx)
-       );
-}
-
 void handle_txrpt_ccx_8723a(struct rtw_adapter *adapter, void *buf)
 {
        struct txrpt_ccx_8723a *txrpt_ccx = buf;
index 79883d7..815560c 100644 (file)
@@ -211,7 +211,6 @@ struct txrpt_ccx_8723a {
 #define txrpt_ccx_sw_8723a(txrpt_ccx) ((txrpt_ccx)->sw0 + ((txrpt_ccx)->sw1<<8))
 #define txrpt_ccx_qtime_8723a(txrpt_ccx) ((txrpt_ccx)->ccx_qtime0+((txrpt_ccx)->ccx_qtime1<<8))
 
-void dump_txrpt_ccx_8723a(void *buf);
 void handle_txrpt_ccx_8723a(struct rtw_adapter *adapter, void *buf);
 void rtl8723a_update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem);
 void rtl8723a_fill_fake_txdesc(struct rtw_adapter *padapter, u8 *pDesc, u32 BufferLen, u8 IsPsPoll, u8 IsBTQosNull);