staging: brcm80211: Remove ETHER_HDR_LEN, use ETH_HLEN
authorJoe Perches <joe@perches.com>
Tue, 14 Dec 2010 00:57:02 +0000 (16:57 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 16 Dec 2010 20:21:28 +0000 (12:21 -0800)
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/include/proto/ethernet.h
drivers/staging/brcm80211/sys/wlc_mac80211.c

index a8638db..888165e 100644 (file)
@@ -23,7 +23,6 @@
 
 #define        ETHER_TYPE_LEN          2
 #define        ETHER_CRC_LEN           4
-#define        ETHER_HDR_LEN           (ETH_ALEN * 2 + ETHER_TYPE_LEN)
 #define        ETHER_MIN_LEN           64
 #define        ETHER_MIN_DATA          46
 #define        ETHER_MAX_LEN           1518
index 407f5ec..8a89b5f 100644 (file)
@@ -1727,7 +1727,7 @@ void *wlc_attach(void *wl, u16 vendor, u16 device, uint unit, bool piomode,
 
        /* some code depends on packed structures */
        ASSERT(sizeof(struct ether_addr) == ETH_ALEN);
-       ASSERT(sizeof(struct ether_header) == ETHER_HDR_LEN);
+       ASSERT(sizeof(struct ether_header) == ETH_HLEN);
        ASSERT(sizeof(d11regs_t) == SI_CORE_SIZE);
        ASSERT(sizeof(ofdm_phy_hdr_t) == D11_PHY_HDR_LEN);
        ASSERT(sizeof(cck_phy_hdr_t) == D11_PHY_HDR_LEN);