staging: rtl8192e: Rename constant IEEE_x to WIRELESS_MODE_x
Rename constant IEEE_B to WIRELESS_MODE_B, IEEE_G -> WIRELESS_MODE_G and IEEE_N_24G -> WIRELESS_MODE_N_24G to align with rtlwifi driver as requested in TODO. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/37d81ab3cbb0231868d75b11eaa2f65a0e6a9379.1687007788.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
26cdc2b7bd
commit
5cac011cf1
|
@ -162,7 +162,7 @@ void rtl92e_set_reg(struct net_device *dev, u8 variable, u8 *val)
|
|||
&priv->rtllib->current_network.qos_data.parameters;
|
||||
|
||||
u1bAIFS = qop->aifs[pAcParam] *
|
||||
((mode & (IEEE_G | IEEE_N_24G)) ? 9 : 20) + aSifsTime;
|
||||
((mode & (WIRELESS_MODE_G | WIRELESS_MODE_N_24G)) ? 9 : 20) + aSifsTime;
|
||||
|
||||
rtl92e_dm_init_edca_turbo(dev);
|
||||
|
||||
|
@ -1816,14 +1816,14 @@ void rtl92e_update_ratr_table(struct net_device *dev)
|
|||
rtl92e_config_rate(dev, &rate_config);
|
||||
ratr_value = rate_config | *pMcsRate << 12;
|
||||
switch (ieee->mode) {
|
||||
case IEEE_B:
|
||||
case WIRELESS_MODE_B:
|
||||
ratr_value &= 0x0000000F;
|
||||
break;
|
||||
case IEEE_G:
|
||||
case IEEE_G | IEEE_B:
|
||||
case WIRELESS_MODE_G:
|
||||
case WIRELESS_MODE_G | WIRELESS_MODE_B:
|
||||
ratr_value &= 0x00000FF7;
|
||||
break;
|
||||
case IEEE_N_24G:
|
||||
case WIRELESS_MODE_N_24G:
|
||||
if (ieee->ht_info->peer_mimo_ps == 0)
|
||||
ratr_value &= 0x0007F007;
|
||||
else
|
||||
|
|
|
@ -277,7 +277,7 @@ static void _rtl92e_update_cap(struct net_device *dev, u16 cap)
|
|||
}
|
||||
}
|
||||
|
||||
if (net->mode & (IEEE_G | IEEE_N_24G)) {
|
||||
if (net->mode & (WIRELESS_MODE_G | WIRELESS_MODE_N_24G)) {
|
||||
u8 slot_time_val;
|
||||
u8 cur_slot_time = priv->slot_time;
|
||||
|
||||
|
|
|
@ -2104,7 +2104,7 @@ static void _rtl92e_dm_dynamic_tx_power(struct net_device *dev)
|
|||
return;
|
||||
}
|
||||
if ((priv->rtllib->ht_info->IOTPeer == HT_IOT_PEER_ATHEROS) &&
|
||||
(priv->rtllib->mode == IEEE_G)) {
|
||||
(priv->rtllib->mode == WIRELESS_MODE_G)) {
|
||||
txhipower_threshold = TX_POWER_ATHEROAP_THRESH_HIGH;
|
||||
txlowpower_threshold = TX_POWER_ATHEROAP_THRESH_LOW;
|
||||
} else {
|
||||
|
|
|
@ -424,12 +424,12 @@ static u8 HT_PickMCSRate(struct rtllib_device *ieee, u8 *pOperateMCS)
|
|||
}
|
||||
|
||||
switch (ieee->mode) {
|
||||
case IEEE_B:
|
||||
case IEEE_G:
|
||||
case WIRELESS_MODE_B:
|
||||
case WIRELESS_MODE_G:
|
||||
for (i = 0; i <= 15; i++)
|
||||
pOperateMCS[i] = 0;
|
||||
break;
|
||||
case IEEE_N_24G:
|
||||
case WIRELESS_MODE_N_24G:
|
||||
pOperateMCS[0] &= RATE_ADPT_1SS_MASK;
|
||||
pOperateMCS[1] &= RATE_ADPT_2SS_MASK;
|
||||
pOperateMCS[3] &= RATE_ADPT_MCS32_MASK;
|
||||
|
|
|
@ -309,7 +309,7 @@ enum rt_op_mode {
|
|||
};
|
||||
|
||||
#define aSifsTime \
|
||||
((priv->rtllib->current_network.mode == IEEE_N_24G) ? 16 : 10)
|
||||
((priv->rtllib->current_network.mode == WIRELESS_MODE_N_24G) ? 16 : 10)
|
||||
|
||||
#define MGMT_QUEUE_NUM 5
|
||||
|
||||
|
@ -1722,10 +1722,7 @@ struct rtllib_device {
|
|||
u8 priv[];
|
||||
};
|
||||
|
||||
#define IEEE_B (1<<1)
|
||||
#define IEEE_G (1<<2)
|
||||
#define IEEE_N_24G (1<<4)
|
||||
#define IEEE_MODE_MASK (IEEE_B | IEEE_G)
|
||||
#define IEEE_MODE_MASK (WIRELESS_MODE_B | WIRELESS_MODE_G)
|
||||
|
||||
/* Generate a 802.11 header */
|
||||
|
||||
|
|
|
@ -2317,9 +2317,9 @@ static inline int rtllib_network_init(
|
|||
network->mode = 0;
|
||||
|
||||
if (network->flags & NETWORK_HAS_OFDM)
|
||||
network->mode |= IEEE_G;
|
||||
network->mode |= WIRELESS_MODE_G;
|
||||
if (network->flags & NETWORK_HAS_CCK)
|
||||
network->mode |= IEEE_B;
|
||||
network->mode |= WIRELESS_MODE_B;
|
||||
|
||||
if (network->mode == 0) {
|
||||
netdev_dbg(ieee->dev, "Filtered out '%s (%pM)' network.\n",
|
||||
|
@ -2329,8 +2329,8 @@ static inline int rtllib_network_init(
|
|||
}
|
||||
|
||||
if (network->bssht.bd_support_ht) {
|
||||
if (network->mode & (IEEE_G | IEEE_B))
|
||||
network->mode = IEEE_N_24G;
|
||||
if (network->mode & (WIRELESS_MODE_G | WIRELESS_MODE_B))
|
||||
network->mode = WIRELESS_MODE_N_24G;
|
||||
}
|
||||
if (rtllib_is_empty_essid(network->ssid, network->ssid_len))
|
||||
network->flags |= NETWORK_EMPTY_ESSID;
|
||||
|
@ -2576,8 +2576,8 @@ static inline void rtllib_process_probe_response(
|
|||
if (is_same_network(&ieee->current_network, network,
|
||||
(network->ssid_len ? 1 : 0))) {
|
||||
update_network(ieee, &ieee->current_network, network);
|
||||
if ((ieee->current_network.mode == IEEE_N_24G ||
|
||||
ieee->current_network.mode == IEEE_G) &&
|
||||
if ((ieee->current_network.mode == WIRELESS_MODE_N_24G ||
|
||||
ieee->current_network.mode == WIRELESS_MODE_G) &&
|
||||
ieee->current_network.berp_info_valid) {
|
||||
if (ieee->current_network.erp_value & ERP_UseProtection)
|
||||
ieee->current_network.buseprotection = true;
|
||||
|
|
|
@ -181,7 +181,7 @@ static u8 MgntQuery_MgntFrameTxRate(struct rtllib_device *ieee)
|
|||
rate = ieee->basic_rate & 0x7f;
|
||||
|
||||
if (rate == 0) {
|
||||
if (ieee->mode == IEEE_N_24G && !ht_info->bCurSuppCCK)
|
||||
if (ieee->mode == WIRELESS_MODE_N_24G && !ht_info->bCurSuppCCK)
|
||||
rate = 0x0c;
|
||||
else
|
||||
rate = 0x02;
|
||||
|
@ -802,8 +802,8 @@ static struct sk_buff *rtllib_probe_resp(struct rtllib_device *ieee,
|
|||
else
|
||||
atim_len = 0;
|
||||
|
||||
if ((ieee->current_network.mode == IEEE_G) ||
|
||||
(ieee->current_network.mode == IEEE_N_24G &&
|
||||
if ((ieee->current_network.mode == WIRELESS_MODE_G) ||
|
||||
(ieee->current_network.mode == WIRELESS_MODE_N_24G &&
|
||||
ieee->ht_info->bCurSuppCCK)) {
|
||||
erp_len = 3;
|
||||
erpinfo_content = 0;
|
||||
|
@ -1470,7 +1470,7 @@ static void rtllib_associate_complete_wq(void *data)
|
|||
netdev_info(ieee->dev, "Using G rates:%d\n", ieee->rate);
|
||||
} else {
|
||||
ieee->rate = 22;
|
||||
ieee->SetWirelessMode(ieee->dev, IEEE_B);
|
||||
ieee->SetWirelessMode(ieee->dev, WIRELESS_MODE_B);
|
||||
netdev_info(ieee->dev, "Using B rates:%d\n", ieee->rate);
|
||||
}
|
||||
if (ieee->ht_info->bCurrentHTSupport && ieee->ht_info->enable_ht) {
|
||||
|
@ -1654,14 +1654,12 @@ inline void rtllib_softmac_new_net(struct rtllib_device *ieee,
|
|||
(ieee->modulation &
|
||||
RTLLIB_OFDM_MODULATION)) {
|
||||
ieee->rate = 108;
|
||||
ieee->SetWirelessMode(ieee->dev,
|
||||
IEEE_G);
|
||||
ieee->SetWirelessMode(ieee->dev, WIRELESS_MODE_G);
|
||||
netdev_info(ieee->dev,
|
||||
"Using G rates\n");
|
||||
} else {
|
||||
ieee->rate = 22;
|
||||
ieee->SetWirelessMode(ieee->dev,
|
||||
IEEE_B);
|
||||
ieee->SetWirelessMode(ieee->dev, WIRELESS_MODE_B);
|
||||
netdev_info(ieee->dev,
|
||||
"Using B rates\n");
|
||||
}
|
||||
|
@ -1826,8 +1824,8 @@ static inline u16 assoc_parse(struct rtllib_device *ieee, struct sk_buff *skb,
|
|||
status_code = le16_to_cpu(response_head->status);
|
||||
if ((status_code == WLAN_STATUS_ASSOC_DENIED_RATES ||
|
||||
status_code == WLAN_STATUS_CAPS_UNSUPPORTED) &&
|
||||
((ieee->mode == IEEE_G) &&
|
||||
(ieee->current_network.mode == IEEE_N_24G) &&
|
||||
((ieee->mode == WIRELESS_MODE_G) &&
|
||||
(ieee->current_network.mode == WIRELESS_MODE_N_24G) &&
|
||||
(ieee->AsocRetryCount++ < (RT_ASOC_RETRY_LIMIT - 1)))) {
|
||||
ieee->ht_info->iot_action |= HT_IOT_ACT_PURE_N_MODE;
|
||||
} else {
|
||||
|
@ -2239,10 +2237,10 @@ static void rtllib_rx_auth_resp(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
ieee->current_network.mode);
|
||||
} else {
|
||||
/*TODO*/
|
||||
ieee->SetWirelessMode(ieee->dev, IEEE_G);
|
||||
ieee->SetWirelessMode(ieee->dev, WIRELESS_MODE_G);
|
||||
}
|
||||
|
||||
if ((ieee->current_network.mode == IEEE_N_24G) &&
|
||||
if ((ieee->current_network.mode == WIRELESS_MODE_N_24G) &&
|
||||
bHalfSupportNmode) {
|
||||
netdev_info(ieee->dev, "======>enter half N mode\n");
|
||||
ieee->bHalfWirelessN24GMode = true;
|
||||
|
@ -2498,7 +2496,7 @@ static void rtllib_start_ibss_wq(void *data)
|
|||
}
|
||||
|
||||
ieee->state = RTLLIB_NOLINK;
|
||||
ieee->mode = IEEE_G;
|
||||
ieee->mode = WIRELESS_MODE_G;
|
||||
/* check if we have this cell in our network list */
|
||||
rtllib_softmac_check_all_nets(ieee);
|
||||
|
||||
|
@ -2568,14 +2566,14 @@ static void rtllib_start_ibss_wq(void *data)
|
|||
}
|
||||
|
||||
ieee->current_network.qos_data.supported = 0;
|
||||
ieee->SetWirelessMode(ieee->dev, IEEE_G);
|
||||
ieee->SetWirelessMode(ieee->dev, WIRELESS_MODE_G);
|
||||
ieee->current_network.mode = ieee->mode;
|
||||
ieee->current_network.atim_window = 0;
|
||||
ieee->current_network.capability = WLAN_CAPABILITY_IBSS;
|
||||
}
|
||||
|
||||
netdev_info(ieee->dev, "%s(): ieee->mode = %d\n", __func__, ieee->mode);
|
||||
if (ieee->mode == IEEE_N_24G)
|
||||
if (ieee->mode == WIRELESS_MODE_N_24G)
|
||||
HTUseDefaultSetting(ieee);
|
||||
else
|
||||
ieee->ht_info->bCurrentHTSupport = false;
|
||||
|
|
|
@ -489,7 +489,7 @@ int rtllib_wx_get_name(struct rtllib_device *ieee, struct iw_request_info *info,
|
|||
{
|
||||
const char *b = ieee->modulation & RTLLIB_CCK_MODULATION ? "b" : "";
|
||||
const char *g = ieee->modulation & RTLLIB_OFDM_MODULATION ? "g" : "";
|
||||
const char *n = ieee->mode & (IEEE_N_24G) ? "n" : "";
|
||||
const char *n = ieee->mode & (WIRELESS_MODE_N_24G) ? "n" : "";
|
||||
|
||||
scnprintf(wrqu->name, sizeof(wrqu->name), "802.11%s%s%s", b, g, n);
|
||||
return 0;
|
||||
|
|
|
@ -406,7 +406,7 @@ static void rtllib_query_protectionmode(struct rtllib_device *ieee,
|
|||
if (is_broadcast_ether_addr(skb->data + 16))
|
||||
return;
|
||||
|
||||
if (ieee->mode < IEEE_N_24G) {
|
||||
if (ieee->mode < WIRELESS_MODE_N_24G) {
|
||||
if (skb->len > ieee->rts) {
|
||||
tcb_desc->bRTSEnable = true;
|
||||
tcb_desc->rts_rate = MGN_24M;
|
||||
|
|
|
@ -118,7 +118,7 @@ static inline char *rtl819x_translate_scan(struct rtllib_device *ieee,
|
|||
max_rate = rate;
|
||||
}
|
||||
|
||||
if (network->mode >= IEEE_N_24G) {
|
||||
if (network->mode >= WIRELESS_MODE_N_24G) {
|
||||
struct ht_capab_ele *ht_cap = NULL;
|
||||
bool is40M = false, isShortGI = false;
|
||||
u8 max_mcs = 0;
|
||||
|
|
Loading…
Reference in New Issue