mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 20:33:49 -04:00
wifi: ath12k: fix missing endianness conversion in wmi_vdev_create_cmd()
The WMI commands are in little endian byte order, fix missing endianness conversion in wmi_vdev_create_cmd. Tested-on: WCN7850 hw2.0 WLAN.IOE_HMT.1.0.2-00240-QCAHMTSWPL_V1.0_V2.0_SILICON-1 Signed-off-by: Miaoqing Pan <quic_miaoqing@quicinc.com> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> Link: https://msgid.link/20240322003726.2016208-1-quic_miaoqing@quicinc.com
This commit is contained in:
@@ -858,20 +858,20 @@ int ath12k_wmi_vdev_create(struct ath12k *ar, u8 *macaddr,
|
||||
len = sizeof(*txrx_streams);
|
||||
txrx_streams->tlv_header = ath12k_wmi_tlv_cmd_hdr(WMI_TAG_VDEV_TXRX_STREAMS,
|
||||
len);
|
||||
txrx_streams->band = WMI_TPC_CHAINMASK_CONFIG_BAND_2G;
|
||||
txrx_streams->band = cpu_to_le32(WMI_TPC_CHAINMASK_CONFIG_BAND_2G);
|
||||
txrx_streams->supported_tx_streams =
|
||||
args->chains[NL80211_BAND_2GHZ].tx;
|
||||
cpu_to_le32(args->chains[NL80211_BAND_2GHZ].tx);
|
||||
txrx_streams->supported_rx_streams =
|
||||
args->chains[NL80211_BAND_2GHZ].rx;
|
||||
cpu_to_le32(args->chains[NL80211_BAND_2GHZ].rx);
|
||||
|
||||
txrx_streams++;
|
||||
txrx_streams->tlv_header = ath12k_wmi_tlv_cmd_hdr(WMI_TAG_VDEV_TXRX_STREAMS,
|
||||
len);
|
||||
txrx_streams->band = WMI_TPC_CHAINMASK_CONFIG_BAND_5G;
|
||||
txrx_streams->band = cpu_to_le32(WMI_TPC_CHAINMASK_CONFIG_BAND_5G);
|
||||
txrx_streams->supported_tx_streams =
|
||||
args->chains[NL80211_BAND_5GHZ].tx;
|
||||
cpu_to_le32(args->chains[NL80211_BAND_5GHZ].tx);
|
||||
txrx_streams->supported_rx_streams =
|
||||
args->chains[NL80211_BAND_5GHZ].rx;
|
||||
cpu_to_le32(args->chains[NL80211_BAND_5GHZ].rx);
|
||||
|
||||
ath12k_dbg(ar->ab, ATH12K_DBG_WMI,
|
||||
"WMI vdev create: id %d type %d subtype %d macaddr %pM pdevid %d\n",
|
||||
|
||||
@@ -2724,9 +2724,9 @@ struct wmi_vdev_create_cmd {
|
||||
|
||||
struct ath12k_wmi_vdev_txrx_streams_params {
|
||||
__le32 tlv_header;
|
||||
u32 band;
|
||||
u32 supported_tx_streams;
|
||||
u32 supported_rx_streams;
|
||||
__le32 band;
|
||||
__le32 supported_tx_streams;
|
||||
__le32 supported_rx_streams;
|
||||
} __packed;
|
||||
|
||||
struct wmi_vdev_delete_cmd {
|
||||
|
||||
Reference in New Issue
Block a user