Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235598
b: refs/heads/master
c: 392308d
h: refs/heads/master
v: v3
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Jan 20, 2011
1 parent 488680d commit bf4dd9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3e9796f9d4da939f7a67ba66790e9cfb9f9a316b
refs/heads/master: 392308d00eb99bd92093fd8d6b7049d6745f150b
8 changes: 0 additions & 8 deletions trunk/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 trunk/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 bf4dd9a

Please sign in to comment.