mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
93ae4353cd
ath11k is the upstream driver for Qualcomm 802.11ax radios, both for the internal AHB and PCI based cards. This commit does however only provide PCI support while AHB will follow but its SoC specific so it will require an OpenWrt target first. It differs a bit from ath10k as it requires stuff like QRTR, MHI and QMI helpers. PCI variant requires qrtr-mhi and mhi-bus which backports do provide, however we are dropping those in a patch as they will conflict with support for the AHB variant as that one requires qrtr-smd which in turn requires RPMSG and GLINK and its not feasable to provide those in backports as they are really SoC specific. QRTR and MHI in kernel 5.10 are not usable and backporting the changes is not easy as they have changed drastically from 5.10 to 5.15 ath11k will only be available on targets that use kernel 5.15. Signed-off-by: Robert Marko <robimarko@gmail.com>
26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
From a797f479bf3e02c6d179c2e6aeace7f9b22b0acd Mon Sep 17 00:00:00 2001
|
|
From: Colin Ian King <colin.i.king@gmail.com>
|
|
Date: Wed, 28 Sep 2022 15:38:34 +0100
|
|
Subject: [PATCH] wifi: ath11k: Fix spelling mistake "chnange" -> "change"
|
|
|
|
There is a spelling mistake in an ath11k_dbg debug message. Fix it.
|
|
|
|
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Link: https://lore.kernel.org/r/20220928143834.35189-1-colin.i.king@gmail.com
|
|
---
|
|
drivers/net/wireless/ath/ath11k/wmi.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.c
|
|
@@ -6829,7 +6829,7 @@ static void ath11k_wmi_event_peer_sta_ps
|
|
}
|
|
|
|
ath11k_dbg(ab, ATH11K_DBG_WMI,
|
|
- "peer sta ps chnange ev addr %pM state %u sup_bitmap %x ps_valid %u ts %u\n",
|
|
+ "peer sta ps change ev addr %pM state %u sup_bitmap %x ps_valid %u ts %u\n",
|
|
ev->peer_macaddr.addr, ev->peer_ps_state,
|
|
ev->ps_supported_bitmap, ev->peer_ps_valid,
|
|
ev->peer_ps_timestamp);
|