diff options
author | Kalle Valo <kvalo@kernel.org> | 2022-02-25 12:36:57 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2022-02-25 12:36:57 +0300 |
commit | c7723917a444c6d59f15365ecf54aa6021d97da5 (patch) | |
tree | e800aa4145e7127bf35751c4d7bef17522a90f74 /drivers/net/wireless/ath/spectral_common.h | |
parent | b865273ba4d9b15dbd92d079ee14e6e532c22a5a (diff) | |
parent | 49ffac5907a8ff30c2cfc6ff9d56fe5c81abb059 (diff) | |
download | linux-c7723917a444c6d59f15365ecf54aa6021d97da5.tar.xz |
Merge ath-next from git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
ath.git patches for v5.18. Major changes:
ath11k
* debugfs interface to configure firmware debug log level
* debugfs interface to test Target Wake Time (TWT)
* provide 802.11ax High Efficiency (HE) data via radiotap
ath9k
* use hw_random API instead of directly dumping into random.c
wcn36xx
* fix wcn3660 to work on 5 GHz band
Diffstat (limited to 'drivers/net/wireless/ath/spectral_common.h')
-rw-r--r-- | drivers/net/wireless/ath/spectral_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/spectral_common.h b/drivers/net/wireless/ath/spectral_common.h index e14f374f97d4..fe187c1fbeb0 100644 --- a/drivers/net/wireless/ath/spectral_common.h +++ b/drivers/net/wireless/ath/spectral_common.h @@ -108,7 +108,7 @@ struct fft_sample_ath10k { u8 avgpwr_db; u8 max_exp; - u8 data[0]; + u8 data[]; } __packed; struct fft_sample_ath11k { @@ -123,7 +123,7 @@ struct fft_sample_ath11k { __be32 tsf; __be32 noise; - u8 data[0]; + u8 data[]; } __packed; #endif /* SPECTRAL_COMMON_H */ |