summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau2025-07-06 17:23:59 +0000
committerFelix Fietkau2025-07-06 17:25:01 +0000
commitd2b2670937f051bda7c8fbda8a6c0131977d5e68 (patch)
treeb88c1ff757ad1f2a995b20eeb738b488acad73ab
parentbb279e1a69b17d68d4cab299c4bb290a948b9930 (diff)
downloadopenwrt-d2b2670937f051bda7c8fbda8a6c0131977d5e68.tar.gz
ath9k: add back previous DT compatible strings for ahb
The ath9k ahb patch was updated to match the latest upstream version, however the openwrt DT files still use the older names. Add those as extra entries in order to remain compatible until DT files are fixed. Fixes: 88f4c32060f7 ("mac80211: update to version 6.14.11") Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--package/kernel/mac80211/patches/ath9k/553-ath9k-ahb_of_compat.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/ath9k/553-ath9k-ahb_of_compat.patch b/package/kernel/mac80211/patches/ath9k/553-ath9k-ahb_of_compat.patch
new file mode 100644
index 0000000000..20e351d203
--- /dev/null
+++ b/package/kernel/mac80211/patches/ath9k/553-ath9k-ahb_of_compat.patch
@@ -0,0 +1,16 @@
+--- a/drivers/net/wireless/ath/ath9k/ahb.c
++++ b/drivers/net/wireless/ath/ath9k/ahb.c
+@@ -31,6 +31,13 @@ static const struct of_device_id ath9k_o
+ { .compatible = "qca,qca9530-wifi", .data = (void *)AR9300_DEVID_AR953X },
+ { .compatible = "qca,qca9550-wifi", .data = (void *)AR9300_DEVID_QCA955X },
+ { .compatible = "qca,qca9560-wifi", .data = (void *)AR9300_DEVID_QCA956X },
++ /* backwards compat, remove if no longer needed: */
++ { .compatible = "qca,ar9130-wmac", .data = (void *)AR5416_AR9100_DEVID },
++ { .compatible = "qca,ar9330-wmac", .data = (void *)AR9300_DEVID_AR9330 },
++ { .compatible = "qca,ar9340-wmac", .data = (void *)AR9300_DEVID_AR9340 },
++ { .compatible = "qca,qca9530-wmac", .data = (void *)AR9300_DEVID_AR953X },
++ { .compatible = "qca,qca9550-wmac", .data = (void *)AR9300_DEVID_QCA955X },
++ { .compatible = "qca,qca9560-wmac", .data = (void *)AR9300_DEVID_QCA956X },
+ {},
+ };
+