mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging: wilc1000: rename u8ASELCap of struct add_sta_param
This patch renames u8ASELCap of struct add_sta_param to ht_ante_sel to avoid CamelCase naming convention. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
74fe73cf08
commit
a486baff71
@@ -2337,7 +2337,7 @@ static u32 WILC_HostIf_PackStaParam(u8 *pu8Buffer,
|
||||
*pu8CurrByte++ = (pstrStationParam->ht_tx_bf_cap >> 16) & 0xFF;
|
||||
*pu8CurrByte++ = (pstrStationParam->ht_tx_bf_cap >> 24) & 0xFF;
|
||||
|
||||
*pu8CurrByte++ = pstrStationParam->u8ASELCap;
|
||||
*pu8CurrByte++ = pstrStationParam->ht_ante_sel;
|
||||
|
||||
*pu8CurrByte++ = pstrStationParam->u16FlagsMask & 0xFF;
|
||||
*pu8CurrByte++ = (pstrStationParam->u16FlagsMask >> 8) & 0xFF;
|
||||
|
||||
@@ -298,7 +298,7 @@ struct add_sta_param {
|
||||
u8 ht_supp_mcs_set[16];
|
||||
u16 ht_ext_params;
|
||||
u32 ht_tx_bf_cap;
|
||||
u8 u8ASELCap;
|
||||
u8 ht_ante_sel;
|
||||
u16 u16FlagsMask;
|
||||
u16 u16FlagsSet;
|
||||
};
|
||||
|
||||
@@ -3020,7 +3020,7 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev,
|
||||
WILC_SUPP_MCS_SET_SIZE);
|
||||
strStaParams.ht_ext_params = params->ht_capa->extended_ht_cap_info;
|
||||
strStaParams.ht_tx_bf_cap = params->ht_capa->tx_BF_cap_info;
|
||||
strStaParams.u8ASELCap = params->ht_capa->antenna_selection_info;
|
||||
strStaParams.ht_ante_sel = params->ht_capa->antenna_selection_info;
|
||||
}
|
||||
|
||||
strStaParams.u16FlagsMask = params->sta_flags_mask;
|
||||
@@ -3036,7 +3036,8 @@ static int add_station(struct wiphy *wiphy, struct net_device *dev,
|
||||
strStaParams.ht_ext_params);
|
||||
PRINT_D(HOSTAPD_DBG, "Tx Beamforming Cap = %d\n",
|
||||
strStaParams.ht_tx_bf_cap);
|
||||
PRINT_D(HOSTAPD_DBG, "Antenna selection info = %d\n", strStaParams.u8ASELCap);
|
||||
PRINT_D(HOSTAPD_DBG, "Antenna selection info = %d\n",
|
||||
strStaParams.ht_ante_sel);
|
||||
PRINT_D(HOSTAPD_DBG, "Flag Mask = %d\n", strStaParams.u16FlagsMask);
|
||||
PRINT_D(HOSTAPD_DBG, "Flag Set = %d\n", strStaParams.u16FlagsSet);
|
||||
|
||||
@@ -3141,8 +3142,7 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev,
|
||||
WILC_SUPP_MCS_SET_SIZE);
|
||||
strStaParams.ht_ext_params = params->ht_capa->extended_ht_cap_info;
|
||||
strStaParams.ht_tx_bf_cap = params->ht_capa->tx_BF_cap_info;
|
||||
strStaParams.u8ASELCap = params->ht_capa->antenna_selection_info;
|
||||
|
||||
strStaParams.ht_ante_sel = params->ht_capa->antenna_selection_info;
|
||||
}
|
||||
|
||||
strStaParams.u16FlagsMask = params->sta_flags_mask;
|
||||
@@ -3158,7 +3158,8 @@ static int change_station(struct wiphy *wiphy, struct net_device *dev,
|
||||
strStaParams.ht_ext_params);
|
||||
PRINT_D(HOSTAPD_DBG, "Tx Beamforming Cap = %d\n",
|
||||
strStaParams.ht_tx_bf_cap);
|
||||
PRINT_D(HOSTAPD_DBG, "Antenna selection info = %d\n", strStaParams.u8ASELCap);
|
||||
PRINT_D(HOSTAPD_DBG, "Antenna selection info = %d\n",
|
||||
strStaParams.ht_ante_sel);
|
||||
PRINT_D(HOSTAPD_DBG, "Flag Mask = %d\n", strStaParams.u16FlagsMask);
|
||||
PRINT_D(HOSTAPD_DBG, "Flag Set = %d\n", strStaParams.u16FlagsSet);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user