Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 392308d0 authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman
Browse files

staging: brcm80211: replaced struct dot11_management_header with ieee80211_mgmt



Code cleanup.

Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarRoland Vossen <rvossen@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3e9796f9
Loading
Loading
Loading
Loading
+0 −8
Original line number Original line Diff line number Diff line
@@ -51,14 +51,6 @@
#define DOT11_BA_BITMAP_LEN		128
#define DOT11_BA_BITMAP_LEN		128
#define DOT11_BA_LEN		4
#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
#define	DOT11_MGMT_HDR_LEN	24


struct dot11_bcn_prb {
struct dot11_bcn_prb {
+4 −5
Original line number Original line Diff line number Diff line
@@ -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(d11rxhdr_t) == RXHDR_LEN);
	ASSERT(sizeof(struct ieee80211_hdr) == DOT11_A4_HDR_LEN);
	ASSERT(sizeof(struct ieee80211_hdr) == DOT11_A4_HDR_LEN);
	ASSERT(sizeof(struct ieee80211_rts) == DOT11_RTS_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(struct dot11_bcn_prb) == DOT11_BCN_PRB_LEN);
	ASSERT(sizeof(tx_status_t) == TXSTATUS_LEN);
	ASSERT(sizeof(tx_status_t) == TXSTATUS_LEN);
	ASSERT(sizeof(ht_cap_ie_t) == HT_CAP_IE_LEN);
	ASSERT(sizeof(ht_cap_ie_t) == HT_CAP_IE_LEN);
@@ -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};
	static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
	cck_phy_hdr_t *plcp;
	cck_phy_hdr_t *plcp;
	struct dot11_management_header *h;
	struct ieee80211_mgmt *h;
	int hdr_len, body_len;
	int hdr_len, body_len;


	ASSERT(*len >= 142);
	ASSERT(*len >= 142);
@@ -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);
		wlc_beacon_phytxctl_txant_upd(wlc, bcn_rspec);


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


	/* fill in 802.11 header */
	/* 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 */
	/* 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 */
	/* A1 filled in by MAC for prb resp, broadcast for bcn */