wifi: ath12k: Avoid -Wflex-array-member-not-at-end warnings
authorGustavo A. R. Silva <gustavoars@kernel.org>
Fri, 16 Aug 2024 10:12:39 +0000 (13:12 +0300)
committerKalle Valo <quic_kvalo@quicinc.com>
Thu, 5 Sep 2024 16:20:21 +0000 (19:20 +0300)
-Wflex-array-member-not-at-end was introduced in GCC-14, and we are
getting ready to enable it, globally.

Move the conflicting declaration to the end of the structure. Notice
that `struct ieee80211_chanctx_conf` is a flexible structure --a
structure that contains a flexible-array member.

Also, remove an unused structure.

Fix the following warnings:
drivers/net/wireless/ath/ath12k/core.h:290:39: warning: structure containing a flexible array member is not at the end of another structure [-Wflex-array-member-not-at-end]
drivers/net/wireless/ath/ath12k/dp.h:1499:24: warning: structure containing a flexible array member is not at the end of another structure [-Wflex-array-member-not-at-end]

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://patch.msgid.link/ZrZEuxJihMzAaTVh@cute
drivers/net/wireless/ath/ath12k/core.h
drivers/net/wireless/ath/ath12k/dp.h

index cdfd43a7321a9efc51e45ccb1dc546777942f59c..7f2e9a9b40977d2fde9660a75d112b107e3104be 100644 (file)
@@ -287,7 +287,6 @@ struct ath12k_vif {
        int txpower;
        bool rsnie_present;
        bool wpaie_present;
-       struct ieee80211_chanctx_conf chanctx;
        u32 key_cipher;
        u8 tx_encap_type;
        u8 vdev_stats_id;
@@ -295,6 +294,13 @@ struct ath12k_vif {
        bool ps;
        struct ath12k_vif_cache *cache;
        struct ath12k_rekey_data rekey_data;
+
+       /* Must be last - ends in a flexible-array member.
+        *
+        * FIXME: Driver should not copy struct ieee80211_chanctx_conf,
+        * especially because it has a flexible array. Find a better way.
+        */
+       struct ieee80211_chanctx_conf chanctx;
 };
 
 struct ath12k_vif_iter {
index b77497c14ac45d5d86cc4e8a3c72d9b2f9c41343..2fb18b83b3eec422f9b675aeeccdeac06dc24b46 100644 (file)
@@ -1495,18 +1495,6 @@ struct htt_ppdu_stats_user_rate {
 #define HTT_TX_INFO_PEERID(_flags) \
                        u32_get_bits(_flags, HTT_PPDU_STATS_TX_INFO_FLAGS_PEERID_M)
 
-struct htt_tx_ppdu_stats_info {
-       struct htt_tlv tlv_hdr;
-       __le32 tx_success_bytes;
-       __le32 tx_retry_bytes;
-       __le32 tx_failed_bytes;
-       __le32 flags; /* %HTT_PPDU_STATS_TX_INFO_FLAGS_ */
-       __le16 tx_success_msdus;
-       __le16 tx_retry_msdus;
-       __le16 tx_failed_msdus;
-       __le16 tx_duration; /* united in us */
-} __packed;
-
 enum  htt_ppdu_stats_usr_compln_status {
        HTT_PPDU_STATS_USER_STATUS_OK,
        HTT_PPDU_STATS_USER_STATUS_FILTERED,