aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/sys/wlc_rate.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/brcm80211/sys/wlc_rate.h')
-rw-r--r--drivers/staging/brcm80211/sys/wlc_rate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/brcm80211/sys/wlc_rate.h b/drivers/staging/brcm80211/sys/wlc_rate.h
index 41359534616..25ba2a42363 100644
--- a/drivers/staging/brcm80211/sys/wlc_rate.h
+++ b/drivers/staging/brcm80211/sys/wlc_rate.h
@@ -28,10 +28,10 @@ extern const struct wlc_rateset wlc_lrs_rates;
28extern const struct wlc_rateset rate_limit_1_2; 28extern const struct wlc_rateset rate_limit_1_2;
29 29
30typedef struct mcs_info { 30typedef struct mcs_info {
31 uint32 phy_rate_20; /* phy rate in kbps [20Mhz] */ 31 u32 phy_rate_20; /* phy rate in kbps [20Mhz] */
32 uint32 phy_rate_40; /* phy rate in kbps [40Mhz] */ 32 u32 phy_rate_40; /* phy rate in kbps [40Mhz] */
33 uint32 phy_rate_20_sgi; /* phy rate in kbps [20Mhz] with SGI */ 33 u32 phy_rate_20_sgi; /* phy rate in kbps [20Mhz] with SGI */
34 uint32 phy_rate_40_sgi; /* phy rate in kbps [40Mhz] with SGI */ 34 u32 phy_rate_40_sgi; /* phy rate in kbps [40Mhz] with SGI */
35 u8 tx_phy_ctl3; /* phy ctl byte 3, code rate, modulation type, # of streams */ 35 u8 tx_phy_ctl3; /* phy ctl byte 3, code rate, modulation type, # of streams */
36 u8 leg_ofdm; /* matching legacy ofdm rate in 500bkps */ 36 u8 leg_ofdm; /* matching legacy ofdm rate in 500bkps */
37} mcs_info_t; 37} mcs_info_t;
@@ -65,7 +65,7 @@ extern const mcs_info_t mcs_table[];
65/* rate spec : holds rate and mode specific information required to generate a tx frame. */ 65/* rate spec : holds rate and mode specific information required to generate a tx frame. */
66/* Legacy CCK and OFDM information is held in the same manner as was done in the past */ 66/* Legacy CCK and OFDM information is held in the same manner as was done in the past */
67/* (in the lower byte) the upper 3 bytes primarily hold MIMO specific information */ 67/* (in the lower byte) the upper 3 bytes primarily hold MIMO specific information */
68typedef uint32 ratespec_t; 68typedef u32 ratespec_t;
69 69
70/* rate spec bit fields */ 70/* rate spec bit fields */
71#define RSPEC_RATE_MASK 0x0000007F /* Either 500Kbps units or MIMO MCS idx */ 71#define RSPEC_RATE_MASK 0x0000007F /* Either 500Kbps units or MIMO MCS idx */