staging: brcm80211: removed unused inline function from wlc_ampdu.c
authorArend van Spriel <arend@broadcom.com>
Fri, 21 Jan 2011 10:20:14 +0000 (11:20 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 21 Jan 2011 20:06:55 +0000 (12:06 -0800)
This file defined an inline function pkt_txh_seqnum() which was not
used and as such is removed.

Reviewed-by: Brett Rudley <brudley@broadcom.com>
Reviewed-by: Henry Ptasinski <henryp@broadcom.com>
Reviewed-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c

index 8e10112..f5ca897 100644 (file)
@@ -152,15 +152,6 @@ static void wlc_ampdu_dotxstatus_complete(struct ampdu_info *ampdu,
                                          struct sk_buff *p, tx_status_t *txs,
                                          u32 frmtxstatus, u32 frmtxstatus2);
 
-static inline u16 pkt_txh_seqnum(struct wlc_info *wlc, struct sk_buff *p)
-{
-       d11txh_t *txh;
-       struct ieee80211_hdr *h;
-       txh = (d11txh_t *) p->data;
-       h = (struct ieee80211_hdr *)((u8 *) (txh + 1) + D11_PHY_HDR_LEN);
-       return ltoh16(h->seq_ctrl) >> SEQNUM_SHIFT;
-}
-
 struct ampdu_info *wlc_ampdu_attach(struct wlc_info *wlc)
 {
        struct ampdu_info *ampdu;