Skip to content

Commit

Permalink
staging: brcm80211: replaced struct dot11_management_header with ieee…
Browse files Browse the repository at this point in the history
…80211_mgmt

Code cleanup.

Reviewed-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Jan 20, 2011
1 parent 3e9796f commit 392308d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
8 changes: 0 additions & 8 deletions drivers/staging/brcm80211/include/proto/802.11.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,6 @@
#define DOT11_BA_BITMAP_LEN 128
#define DOT11_BA_LEN 4

struct dot11_management_header {
u16 fc;
u16 durid;
u8 da[ETH_ALEN];
u8 sa[ETH_ALEN];
u8 bssid[ETH_ALEN];
u16 seq;
} __attribute__((packed));
#define DOT11_MGMT_HDR_LEN 24

struct dot11_bcn_prb {
Expand Down
9 changes: 4 additions & 5 deletions drivers/staging/brcm80211/sys/wlc_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -1744,7 +1744,6 @@ void *wlc_attach(void *wl, u16 vendor, u16 device, uint unit, bool piomode,
ASSERT(sizeof(d11rxhdr_t) == RXHDR_LEN);
ASSERT(sizeof(struct ieee80211_hdr) == DOT11_A4_HDR_LEN);
ASSERT(sizeof(struct ieee80211_rts) == DOT11_RTS_LEN);
ASSERT(sizeof(struct dot11_management_header) == DOT11_MGMT_HDR_LEN);
ASSERT(sizeof(struct dot11_bcn_prb) == DOT11_BCN_PRB_LEN);
ASSERT(sizeof(tx_status_t) == TXSTATUS_LEN);
ASSERT(sizeof(ht_cap_ie_t) == HT_CAP_IE_LEN);
Expand Down Expand Up @@ -7625,7 +7624,7 @@ wlc_bcn_prb_template(struct wlc_info *wlc, uint type, ratespec_t bcn_rspec,
{
static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
cck_phy_hdr_t *plcp;
struct dot11_management_header *h;
struct ieee80211_mgmt *h;
int hdr_len, body_len;

ASSERT(*len >= 142);
Expand Down Expand Up @@ -7658,12 +7657,12 @@ wlc_bcn_prb_template(struct wlc_info *wlc, uint type, ratespec_t bcn_rspec,
wlc_beacon_phytxctl_txant_upd(wlc, bcn_rspec);

if (MBSS_BCN_ENAB(cfg) && type == FC_BEACON)
h = (struct dot11_management_header *)&plcp[0];
h = (struct ieee80211_mgmt *)&plcp[0];
else
h = (struct dot11_management_header *)&plcp[1];
h = (struct ieee80211_mgmt *)&plcp[1];

/* fill in 802.11 header */
h->fc = htol16((u16) type);
h->frame_control = htol16((u16) type);

/* DUR is 0 for multicast bcn, or filled in by MAC for prb resp */
/* A1 filled in by MAC for prb resp, broadcast for bcn */
Expand Down

0 comments on commit 392308d

Please sign in to comment.