staging: vt6655: s_cbFillTxBufHead remove unused parameter *puMACfragNum
authorMalcolm Priestley <tvboxspy@gmail.com>
Sat, 29 Nov 2014 00:02:01 +0000 (00:02 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Dec 2014 00:35:10 +0000 (16:35 -0800)
*puMACfragNum was part of old legacy functions.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/rxtx.c

index 4189405bb23839980201ba55b87456c0dadcdb67..f1dacf9e9c464685638b40e9d8e4263cde447787 100644 (file)
@@ -131,8 +131,7 @@ static unsigned int
 s_cbFillTxBufHead(struct vnt_private *pDevice, unsigned char byPktType,
                  unsigned char *pbyTxBufferAddr, unsigned int cbFrameBodySize,
                  unsigned int uDMAIdx, PSTxDesc pHeadTD,
-                 unsigned char *pPacket, unsigned int uNodeIndex,
-                 unsigned int *puMACfragNum);
+                 unsigned char *pPacket, unsigned int uNodeIndex);
 
 static
 __le16
@@ -1033,8 +1032,7 @@ static unsigned int
 s_cbFillTxBufHead(struct vnt_private *pDevice, unsigned char byPktType,
                  unsigned char *pbyTxBufferAddr, unsigned int cbFrameBodySize,
                  unsigned int uDMAIdx, PSTxDesc pHeadTD,
-                 unsigned char *pPacket, unsigned int is_pspoll,
-                 unsigned int *puMACfragNum)
+                 unsigned char *pPacket, unsigned int is_pspoll)
 {
        PDEVICE_TD_INFO td_info = pHeadTD->pTDInfo;
        struct sk_buff *skb = td_info->skb;
@@ -1214,8 +1212,6 @@ s_cbFillTxBufHead(struct vnt_private *pDevice, unsigned char byPktType,
        ptdCurr->m_td1TD1.byTCR |= (TCR_STP | TCR_EDP | EDMSDU);
        ptdCurr->m_td1TD1.wReqCount = cpu_to_le16((unsigned short)(cbReqCount));
 
-       *puMACfragNum = uMACfragNum;
-
        return cbHeaderLength;
 }
 
@@ -1297,7 +1293,6 @@ int vnt_generate_fifo_header(struct vnt_private *priv, u32 dma_idx,
        struct ieee80211_hdr *hdr;
        struct vnt_tx_fifo_head *tx_buffer_head =
                        (struct vnt_tx_fifo_head *)td_info->buf;
-       u32 frag;
        u16 tx_body_size = skb->len, current_rate;
        u8 pkt_type;
        bool is_pspoll = false;
@@ -1405,7 +1400,7 @@ int vnt_generate_fifo_header(struct vnt_private *priv, u32 dma_idx,
 
        s_cbFillTxBufHead(priv, pkt_type, (u8 *)tx_buffer_head, skb->len,
                          dma_idx, head_td, (u8 *)skb->data,
-                         is_pspoll, &frag);
+                         is_pspoll);
 
        if (info->control.hw_key) {
                tx_key = info->control.hw_key;