Commit 54ccb836 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau

wifi: mt76: mt7996: fix endianness warning in mt7996_mcu_sta_he_tlv

Fix the following sparse warnings in mt7996_mcu_sta_he_tlv routine:

warning: incorrect type in assignment (different base types)
   expected unsigned char
   got restricted __le16 [usertype]
warning: incorrect type in assignment (different base types)
   expected unsigned char
   got restricted __le16 [usertype]

Fixes: 98686cd2 ("wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices")
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent ef1ea24c
...@@ -909,8 +909,8 @@ mt7996_mcu_sta_he_tlv(struct sk_buff *skb, struct ieee80211_sta *sta) ...@@ -909,8 +909,8 @@ mt7996_mcu_sta_he_tlv(struct sk_buff *skb, struct ieee80211_sta *sta)
he = (struct sta_rec_he_v2 *)tlv; he = (struct sta_rec_he_v2 *)tlv;
for (i = 0; i < 11; i++) { for (i = 0; i < 11; i++) {
if (i < 6) if (i < 6)
he->he_mac_cap[i] = cpu_to_le16(elem->mac_cap_info[i]); he->he_mac_cap[i] = elem->mac_cap_info[i];
he->he_phy_cap[i] = cpu_to_le16(elem->phy_cap_info[i]); he->he_phy_cap[i] = elem->phy_cap_info[i];
} }
mcs_map = sta->deflink.he_cap.he_mcs_nss_supp; mcs_map = sta->deflink.he_cap.he_mcs_nss_supp;
......
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