Skip to content

Commit

Permalink
mwifiex: remove macro SHORT_SLOT_TIME_DISABLED
Browse files Browse the repository at this point in the history
and SHORT_SLOT_TIME_ENABLED.
Use WLAN_CAPABILITY_SHORT_SLOT_TIME instead.

Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Bing Zhao authored and John W. Linville committed Apr 4, 2011
1 parent 5f9f181 commit b93f85f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions drivers/net/wireless/mwifiex/fw.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ struct tx_packet_hdr {
#define GET_FW_DEFAULT_BANDS(adapter) \
((adapter->fw_cap_info >> 8) & ALL_802_11_BANDS)

#define SHORT_SLOT_TIME_DISABLED(CapInfo) (CapInfo &= ~BIT(10))
#define SHORT_SLOT_TIME_ENABLED(CapInfo) (CapInfo |= BIT(10))

extern u8 supported_rates_b[B_SUPPORTED_RATES];
extern u8 supported_rates_g[G_SUPPORTED_RATES];
extern u8 supported_rates_bg[BG_SUPPORTED_RATES];
Expand Down
6 changes: 3 additions & 3 deletions drivers/net/wireless/mwifiex/join.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ int mwifiex_cmd_802_11_associate(struct mwifiex_private *priv,
tmp_cap = bss_desc->cap_info_bitmap;

if (priv->adapter->config_bands == BAND_B)
SHORT_SLOT_TIME_DISABLED(tmp_cap);
tmp_cap &= ~WLAN_CAPABILITY_SHORT_SLOT_TIME;

tmp_cap &= CAPINFO_MASK;
dev_dbg(priv->adapter->dev, "info: ASSOC_CMD: tmp_cap=%4X CAPINFO_MASK=%4lX\n",
Expand Down Expand Up @@ -1015,9 +1015,9 @@ mwifiex_cmd_802_11_ad_hoc_start(struct mwifiex_private *priv,
+ S_DS_GEN + cmd_append_size));

if (adapter->adhoc_start_band == BAND_B)
SHORT_SLOT_TIME_DISABLED(tmp_cap);
tmp_cap &= ~WLAN_CAPABILITY_SHORT_SLOT_TIME;
else
SHORT_SLOT_TIME_ENABLED(tmp_cap);
tmp_cap |= WLAN_CAPABILITY_SHORT_SLOT_TIME;

adhoc_start->cap_info_bitmap = cpu_to_le16(tmp_cap);

Expand Down

0 comments on commit b93f85f

Please sign in to comment.