diff options
author | Kalle Valo <kvalo@kernel.org> | 2023-10-25 20:10:23 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2023-10-25 20:10:23 +0300 |
commit | b6144dcdd445d1bf8b7973b73c9a2dd5b44661cf (patch) | |
tree | b4b8eb9ee3ce6278b55679f38bd772b76345a65c /drivers/net/wireless/ath/ath12k/reg.h | |
parent | 7d7b6f2953b342bf6eab81886a03680109f3cb1c (diff) | |
parent | f59065401602f06dc5c5364284f3be30d52002ae (diff) | |
download | linux-b6144dcdd445d1bf8b7973b73c9a2dd5b44661cf.tar.xz |
Merge ath-next from git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
ath.git patches for v6.7.
Major changes:
ath12k
* QCN9274: mesh support
ath11k
* firmware-2.bin support
Diffstat (limited to 'drivers/net/wireless/ath/ath12k/reg.h')
-rw-r--r-- | drivers/net/wireless/ath/ath12k/reg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath12k/reg.h b/drivers/net/wireless/ath/ath12k/reg.h index 56d009a47234..35569f03042d 100644 --- a/drivers/net/wireless/ath/ath12k/reg.h +++ b/drivers/net/wireless/ath/ath12k/reg.h @@ -83,6 +83,12 @@ struct ath12k_reg_info { [WMI_REG_CURRENT_MAX_AP_TYPE][WMI_REG_MAX_CLIENT_TYPE]; }; +/* Phy bitmaps */ +enum ath12k_reg_phy_bitmap { + ATH12K_REG_PHY_BITMAP_NO11AX = BIT(5), + ATH12K_REG_PHY_BITMAP_NO11BE = BIT(6), +}; + void ath12k_reg_init(struct ath12k *ar); void ath12k_reg_free(struct ath12k_base *ab); void ath12k_regd_update_work(struct work_struct *work); |