Commit 22520120 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename bIsHTSupported of struct add_sta_param

This patch renames bIsHTSupported of struct add_sta_param to ht_supported
to avoid CamelCase naming convention.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a622e016
...@@ -2320,7 +2320,7 @@ static u32 WILC_HostIf_PackStaParam(u8 *pu8Buffer, ...@@ -2320,7 +2320,7 @@ static u32 WILC_HostIf_PackStaParam(u8 *pu8Buffer,
pstrStationParam->rates_len); pstrStationParam->rates_len);
pu8CurrByte += pstrStationParam->rates_len; pu8CurrByte += pstrStationParam->rates_len;
*pu8CurrByte++ = pstrStationParam->bIsHTSupported; *pu8CurrByte++ = pstrStationParam->ht_supported;
*pu8CurrByte++ = pstrStationParam->u16HTCapInfo & 0xFF; *pu8CurrByte++ = pstrStationParam->u16HTCapInfo & 0xFF;
*pu8CurrByte++ = (pstrStationParam->u16HTCapInfo >> 8) & 0xFF; *pu8CurrByte++ = (pstrStationParam->u16HTCapInfo >> 8) & 0xFF;
......
...@@ -292,7 +292,7 @@ struct add_sta_param { ...@@ -292,7 +292,7 @@ struct add_sta_param {
u16 aid; u16 aid;
u8 rates_len; u8 rates_len;
const u8 *rates; const u8 *rates;
bool bIsHTSupported; bool ht_supported;
u16 u16HTCapInfo; u16 u16HTCapInfo;
u8 u8AmpduParams; u8 u8AmpduParams;
u8 au8SuppMCsSet[16]; u8 au8SuppMCsSet[16];
......
...@@ -3010,9 +3010,9 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -3010,9 +3010,9 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev,
strStaParams.rates_len); strStaParams.rates_len);
if (params->ht_capa == NULL) { if (params->ht_capa == NULL) {
strStaParams.bIsHTSupported = false; strStaParams.ht_supported = false;
} else { } else {
strStaParams.bIsHTSupported = true; strStaParams.ht_supported = true;
strStaParams.u16HTCapInfo = params->ht_capa->cap_info; strStaParams.u16HTCapInfo = params->ht_capa->cap_info;
strStaParams.u8AmpduParams = params->ht_capa->ampdu_params_info; strStaParams.u8AmpduParams = params->ht_capa->ampdu_params_info;
memcpy(strStaParams.au8SuppMCsSet, &params->ht_capa->mcs, WILC_SUPP_MCS_SET_SIZE); memcpy(strStaParams.au8SuppMCsSet, &params->ht_capa->mcs, WILC_SUPP_MCS_SET_SIZE);
...@@ -3024,7 +3024,8 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -3024,7 +3024,8 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev,
strStaParams.u16FlagsMask = params->sta_flags_mask; strStaParams.u16FlagsMask = params->sta_flags_mask;
strStaParams.u16FlagsSet = params->sta_flags_set; strStaParams.u16FlagsSet = params->sta_flags_set;
PRINT_D(HOSTAPD_DBG, "IS HT supported = %d\n", strStaParams.bIsHTSupported); PRINT_D(HOSTAPD_DBG, "IS HT supported = %d\n",
strStaParams.ht_supported);
PRINT_D(HOSTAPD_DBG, "Capability Info = %d\n", strStaParams.u16HTCapInfo); PRINT_D(HOSTAPD_DBG, "Capability Info = %d\n", strStaParams.u16HTCapInfo);
PRINT_D(HOSTAPD_DBG, "AMPDU Params = %d\n", strStaParams.u8AmpduParams); PRINT_D(HOSTAPD_DBG, "AMPDU Params = %d\n", strStaParams.u8AmpduParams);
PRINT_D(HOSTAPD_DBG, "HT Extended params = %d\n", strStaParams.u16HTExtParams); PRINT_D(HOSTAPD_DBG, "HT Extended params = %d\n", strStaParams.u16HTExtParams);
...@@ -3124,9 +3125,9 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -3124,9 +3125,9 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev,
strStaParams.rates_len); strStaParams.rates_len);
if (params->ht_capa == NULL) { if (params->ht_capa == NULL) {
strStaParams.bIsHTSupported = false; strStaParams.ht_supported = false;
} else { } else {
strStaParams.bIsHTSupported = true; strStaParams.ht_supported = true;
strStaParams.u16HTCapInfo = params->ht_capa->cap_info; strStaParams.u16HTCapInfo = params->ht_capa->cap_info;
strStaParams.u8AmpduParams = params->ht_capa->ampdu_params_info; strStaParams.u8AmpduParams = params->ht_capa->ampdu_params_info;
memcpy(strStaParams.au8SuppMCsSet, &params->ht_capa->mcs, WILC_SUPP_MCS_SET_SIZE); memcpy(strStaParams.au8SuppMCsSet, &params->ht_capa->mcs, WILC_SUPP_MCS_SET_SIZE);
...@@ -3139,7 +3140,8 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev, ...@@ -3139,7 +3140,8 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev,
strStaParams.u16FlagsMask = params->sta_flags_mask; strStaParams.u16FlagsMask = params->sta_flags_mask;
strStaParams.u16FlagsSet = params->sta_flags_set; strStaParams.u16FlagsSet = params->sta_flags_set;
PRINT_D(HOSTAPD_DBG, "IS HT supported = %d\n", strStaParams.bIsHTSupported); PRINT_D(HOSTAPD_DBG, "IS HT supported = %d\n",
strStaParams.ht_supported);
PRINT_D(HOSTAPD_DBG, "Capability Info = %d\n", strStaParams.u16HTCapInfo); PRINT_D(HOSTAPD_DBG, "Capability Info = %d\n", strStaParams.u16HTCapInfo);
PRINT_D(HOSTAPD_DBG, "AMPDU Params = %d\n", strStaParams.u8AmpduParams); PRINT_D(HOSTAPD_DBG, "AMPDU Params = %d\n", strStaParams.u8AmpduParams);
PRINT_D(HOSTAPD_DBG, "HT Extended params = %d\n", strStaParams.u16HTExtParams); PRINT_D(HOSTAPD_DBG, "HT Extended params = %d\n", strStaParams.u16HTExtParams);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment