]> Pileus Git - ~andy/linux/commitdiff
staging: brcm80211: Remove unnecessary assertions.
authorHenry Ptasinski <henryp@broadcom.com>
Fri, 1 Oct 2010 21:05:21 +0000 (14:05 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 5 Oct 2010 16:25:15 +0000 (09:25 -0700)
Remove assertions on the size of several structures.  These structures are
never used anywhere.

Signed-off-by: Henry Ptasinski <henryp@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/sys/wlc_ampdu.c

index d2eab6a89b62481040e9e7d327f4949b5d21505d..aa56d997e888d66aee915c5630e3b10ce3c1500c 100644 (file)
@@ -175,12 +175,6 @@ ampdu_info_t *BCMATTACHFN(wlc_ampdu_attach) (wlc_info_t *wlc)
        int i;
 
        /* some code depends on packed structures */
-       ASSERT(sizeof(struct dot11_bar) == DOT11_BAR_LEN);
-       ASSERT(sizeof(struct dot11_ba) == DOT11_BA_LEN + DOT11_BA_BITMAP_LEN);
-       ASSERT(sizeof(struct dot11_ctl_header) == DOT11_CTL_HDR_LEN);
-       ASSERT(sizeof(struct dot11_addba_req) == DOT11_ADDBA_REQ_LEN);
-       ASSERT(sizeof(struct dot11_addba_resp) == DOT11_ADDBA_RESP_LEN);
-       ASSERT(sizeof(struct dot11_delba) == DOT11_DELBA_LEN);
        ASSERT(DOT11_MAXNUMFRAGS == NBITS(uint16));
        ASSERT(ISPOWEROF2(AMPDU_TX_BA_MAX_WSIZE));
        ASSERT(ISPOWEROF2(AMPDU_RX_BA_MAX_WSIZE));