wcn36xx: Add 802.11ac HAL param bitfields
This patch enumerates four previously unused bits in wcn36xx_hal_config_sta_params_v1 describing - HT LDPC enable - VHT LDPC enable - VHT TX BF enable - VHT MU Beamformee enable Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200829033846.2167619-8-bryan.odonoghue@linaro.org
This commit is contained in:
parent
1af05d43b9
commit
ff11d0c96a
|
@ -1515,7 +1515,11 @@ struct wcn36xx_hal_config_sta_params_v1 {
|
|||
u8 p2p;
|
||||
|
||||
/* Reserved to align next field on a dword boundary */
|
||||
u8 reserved;
|
||||
u8 ht_ldpc_enabled:1;
|
||||
u8 vht_ldpc_enabled:1;
|
||||
u8 vht_tx_bf_enabled:1;
|
||||
u8 vht_tx_mu_beamformee_capable:1;
|
||||
u8 reserved:4;
|
||||
|
||||
/* These rates are the intersection of peer and self capabilities. */
|
||||
struct wcn36xx_hal_supported_rates supported_rates;
|
||||
|
|
Loading…
Reference in New Issue