12345678910111213141516171819202122232425262728293031323334 |
- From: Arend van Spriel <[email protected]>
- Date: Wed, 26 Aug 2015 22:15:02 +0200
- Subject: [PATCH] brcmfmac: remove ifidx parameter from
- brcmf_fws_txstatus_suppressed()
- The brcmf_fws_txstatus_suppressed() function prototype specifies an
- ifidx parameter which is not used within the function implementation.
- Reviewed-by: Hante Meuleman <[email protected]>
- Reviewed-by: Franky (Zhenhui) Lin <[email protected]>
- Reviewed-by: Pieter-Paul Giesberts <[email protected]>
- Signed-off-by: Arend van Spriel <[email protected]>
- ---
- --- a/drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c
- +++ b/drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c
- @@ -1398,7 +1398,7 @@ done:
- }
-
- static int brcmf_fws_txstatus_suppressed(struct brcmf_fws_info *fws, int fifo,
- - struct sk_buff *skb, u8 ifidx,
- + struct sk_buff *skb,
- u32 genbit, u16 seq)
- {
- struct brcmf_fws_mac_descriptor *entry = brcmf_skbcb(skb)->mac;
- @@ -1503,7 +1503,7 @@ brcmf_fws_txs_process(struct brcmf_fws_i
- return -EINVAL;
- }
- if (!remove_from_hanger)
- - ret = brcmf_fws_txstatus_suppressed(fws, fifo, skb, ifp->ifidx,
- + ret = brcmf_fws_txstatus_suppressed(fws, fifo, skb,
- genbit, seq);
- if (remove_from_hanger || ret)
- brcmf_txfinalize(ifp, skb, true);
|