Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235602
b: refs/heads/master
c: 0b8b430
h: refs/heads/master
v: v3
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Jan 20, 2011
1 parent f70a47a commit 785eb98
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 17 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: d83b2a8a89fd19f5c9bfefe5d90f30b4287c8568
refs/heads/master: 0b8b430dda57de180bb0e83a9710c70ec5794432
9 changes: 1 addition & 8 deletions trunk/drivers/staging/brcm80211/include/proto/802.11.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,7 @@
#define DOT11_BA_BITMAP_LEN 128
#define DOT11_BA_LEN 4

#define DOT11_MGMT_HDR_LEN 24

struct dot11_bcn_prb {
u32 timestamp[2];
u16 beacon_interval;
u16 capability;
} __attribute__((packed));
#define DOT11_BCN_PRB_LEN 12
#define DOT11_MGMT_HDR_LEN 24

#define WME_OUI "\x00\x50\xf2"
#define WME_VER 1
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/staging/brcm80211/sys/wlc_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ void wlc_bsscfg_mfree(struct osl_info *osh, wlc_bsscfg_t *cfg)

if (cfg->current_bss != NULL) {
wlc_bss_info_t *current_bss = cfg->current_bss;
if (current_bss->bcn_prb != NULL)
kfree(current_bss->bcn_prb);
kfree(current_bss);
cfg->current_bss = NULL;
}
Expand Down
4 changes: 0 additions & 4 deletions trunk/drivers/staging/brcm80211/sys/wlc_mac80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,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_bcn_prb) == DOT11_BCN_PRB_LEN);
ASSERT(sizeof(tx_status_t) == TXSTATUS_LEN);
ASSERT(sizeof(ht_cap_ie_t) == HT_CAP_IE_LEN);
#ifdef BRCM_FULLMAC
Expand Down Expand Up @@ -6979,9 +6978,6 @@ void wlc_bss_list_free(struct wlc_info *wlc, wlc_bss_list_t *bss_list)
for (index = 0; index < bss_list->count; index++) {
bi = bss_list->ptrs[index];
if (bi) {
if (bi->bcn_prb) {
kfree(bi->bcn_prb);
}
kfree(bi);
bss_list->ptrs[index] = NULL;
}
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/staging/brcm80211/sys/wlc_pub.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ typedef struct wlc_bss_info {
u8 dtim_period; /* DTIM period */
s8 phy_noise; /* noise right after tx (in dBm) */
u16 capability; /* Capability information */
struct dot11_bcn_prb *bcn_prb; /* beacon/probe response frame (ioctl na) */
u16 bcn_prb_len; /* beacon/probe response frame length (ioctl na) */
u8 wme_qosinfo; /* QoS Info from WME IE; valid if WLC_BSS_WME flag set */
struct rsn_parms wpa;
struct rsn_parms wpa2;
Expand Down

0 comments on commit 785eb98

Please sign in to comment.