aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2019-10-28 16:02:32 +0100
committerFelix Fietkau <nbd@nbd.name>2019-12-28 20:40:58 +0100
commitda7dde8993169bfe4b91d590913b8d05debd7a89 (patch)
treeea7965c5f5e7252a38dfeceb5c4685407741cd7e /package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch
parent62d5ece70bf6cbbdd1add3a16475a1cea1cb260d (diff)
downloadupstream-da7dde8993169bfe4b91d590913b8d05debd7a89.tar.gz
upstream-da7dde8993169bfe4b91d590913b8d05debd7a89.tar.bz2
upstream-da7dde8993169bfe4b91d590913b8d05debd7a89.zip
mac80211: add pcie apsm backport changes
Required for newer versions of mt76 Signed-off-by: Felix Fietkau <nbd@nbd.name> (cherry-picked from commit d64daf7026ce47788f12130462a3107bdab8718f)
Diffstat (limited to 'package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch')
-rw-r--r--package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch b/package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch
new file mode 100644
index 0000000000..5faeb96748
--- /dev/null
+++ b/package/kernel/mac80211/patches/build/100-backports-pci-Include-linux-pci-aspm.h.patch
@@ -0,0 +1,24 @@
+From: Hauke Mehrtens <hauke@hauke-m.de>
+Date: Fri, 27 Sep 2019 23:12:08 +0200
+Subject: [PATCH] backports: pci: Include linux/pci-aspm.h
+
+In upstream commit 7ce2e76a0420 linux/pci-aspm.h was removed and the
+content included into pci.h. Add an include to have the functions
+defined in linux/pci-aspm.h available when linux/pci.h is included.
+
+Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
+---
+
+--- a/backport-include/linux/pci.h
++++ b/backport-include/linux/pci.h
+@@ -3,6 +3,10 @@
+ #include_next <linux/pci.h>
+ #include <linux/version.h>
+
++#if LINUX_VERSION_IS_LESS(5,4,0)
++#include <linux/pci-aspm.h>
++#endif
++
+ #ifndef module_pci_driver
+ /**
+ * module_pci_driver() - Helper macro for registering a PCI driver