[openwrt/openwrt] ath10k-ct: remove outdated iommu revert patch

LEDE Commits lede-commits at lists.infradead.org
Mon Dec 8 09:47:53 PST 2025


ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/301eee8099383053a13f22d9636f54b7ac932f03

commit 301eee8099383053a13f22d9636f54b7ac932f03
Author: Shiji Yang <yangshiji66 at outlook.com>
AuthorDate: Mon Dec 8 19:11:39 2025 +0800

    ath10k-ct: remove outdated iommu revert patch
    
    The issue described in the patch can not be reproduced in the latest
    6.18 ath10k-ct driver. It should have been fixed by the upstream.
    
    Signed-off-by: Shiji Yang <yangshiji66 at outlook.com>
    Link: https://github.com/openwrt/openwrt/pull/21089
    Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
 ...wifi-ath10k-Use-iommu_paging_domain_alloc.patch | 28 ----------------------
 1 file changed, 28 deletions(-)

diff --git a/package/kernel/ath10k-ct/patches/004-Revert-wifi-ath10k-Use-iommu_paging_domain_alloc.patch b/package/kernel/ath10k-ct/patches/004-Revert-wifi-ath10k-Use-iommu_paging_domain_alloc.patch
deleted file mode 100644
index 5940fd7a19..0000000000
--- a/package/kernel/ath10k-ct/patches/004-Revert-wifi-ath10k-Use-iommu_paging_domain_alloc.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From: Shiji Yang <yangshiji66 at outlook.com>
-Date: Fri, 28 Mar 2025 19:56:06 +0800
-Subject: [PATCH] Revert "wifi: ath10k: Use iommu_paging_domain_alloc()"
-
-IPQ4019 wireless can't start after upstream commit d5b7485588df[1].
-
-[1] https://github.com/torvalds/linux/commit/d5b7485588dffb39c5687e965623124ab7ebcd51
-Signed-off-by: Shiji Yang <yangshiji66 at outlook.com>
----
- ath10k-6.18/snoc.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
---- a/ath10k-6.18/snoc.c
-+++ b/ath10k-6.18/snoc.c
-@@ -1630,10 +1630,10 @@ static int ath10k_fw_init(struct ath10k
- 
- 	ar_snoc->fw.dev = &pdev->dev;
- 
--	iommu_dom = iommu_paging_domain_alloc(ar_snoc->fw.dev);
--	if (IS_ERR(iommu_dom)) {
-+	iommu_dom = iommu_domain_alloc(&platform_bus_type);
-+	if (!iommu_dom) {
- 		ath10k_err(ar, "failed to allocate iommu domain\n");
--		ret = PTR_ERR(iommu_dom);
-+		ret = -ENOMEM;
- 		goto err_unregister;
- 	}
- 




More information about the lede-commits mailing list