1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-15 04:42:02 +00:00
openmptcprouter/6.7/package/kernel/mac80211/patches/ath10k/999-ath10k-fix-compilation-on-6.7.0.patch

14 lines
414 B
Diff

--- a/drivers/net/wireless/ath/ath10k/pci.c 2023-12-22 19:22:13.061853464 +0100
+++ b/drivers/net/wireless/ath/ath10k/pci.c 2023-12-22 19:23:22.184610463 +0100
@@ -3163,7 +3163,11 @@
* immediate servicing.
*/
if (ath10k_ce_interrupt_summary(ar)) {
+#if LINUX_VERSION_IS_LESS(6,7,0)
napi_reschedule(ctx);
+#else
+ napi_schedule(ctx);
+#endif
goto out;
}
ath10k_pci_enable_legacy_irq(ar);