Re: [PATCH][next] wifi: ath11k: Avoid -Wflex-array-member-not-at-end warnings

2024-09-05 Thread Kalle Valo
"Gustavo A. R. Silva" wrote: > -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

Re: [PATCH][next] wifi: ath11k: Avoid -Wflex-array-member-not-at-end warnings

2024-08-22 Thread Kalle Valo
Jeff Johnson writes: > On 8/9/2024 9:20 AM, Gustavo A. R. Silva wrote: > >> -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_co

Re: [PATCH][next] wifi: ath11k: Avoid -Wflex-array-member-not-at-end warnings

2024-08-10 Thread Gustavo A. R. Silva
On 09/08/24 20:21, Jeff Johnson wrote: On 8/9/2024 9:20 AM, Gustavo A. R. Silva wrote: -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

Re: [PATCH][next] wifi: ath11k: Avoid -Wflex-array-member-not-at-end warnings

2024-08-09 Thread Jeff Johnson
On 8/9/2024 9:20 AM, Gustavo A. R. Silva wrote: > -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

[PATCH][next] wifi: ath11k: Avoid -Wflex-array-member-not-at-end warnings

2024-08-09 Thread Gustavo A. R. Silva
-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, re