aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiaxun Yang <jiaxun.yang@flygoat.com>2022-02-07 11:33:36 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2022-04-06 00:22:09 +0200
commit3a47386502eea1cd023b7449a974d4c6782edae2 (patch)
treefda750f36d3e32e1668b062696ab84ac452c4180
parent1d1b99b4698725b3978cd0a67c5760b479fded72 (diff)
downloadbackports-3a47386502eea1cd023b7449a974d4c6782edae2.tar.gz
backports: Add QRTR driver
Add it to copylist and wire up in Makefile and Kconfig. Also set minimal depdency to 5.2. Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
-rw-r--r--backport/Kconfig.sources1
-rw-r--r--backport/Makefile.kernel1
-rw-r--r--copy-list3
-rw-r--r--dependencies3
4 files changed, 8 insertions, 0 deletions
diff --git a/backport/Kconfig.sources b/backport/Kconfig.sources
index 8f430965..87ffca94 100644
--- a/backport/Kconfig.sources
+++ b/backport/Kconfig.sources
@@ -4,6 +4,7 @@ source "$BACKPORT_DIR/compat/Kconfig"
# these are copied from the kernel
source "$BACKPORT_DIR/net/wireless/Kconfig"
source "$BACKPORT_DIR/net/mac80211/Kconfig"
+source "$BACKPORT_DIR/net/qrtr/Kconfig"
source "$BACKPORT_DIR/drivers/bus/mhi/Kconfig"
source "$BACKPORT_DIR/drivers/net/wireless/Kconfig"
source "$BACKPORT_DIR/drivers/net/usb/Kconfig"
diff --git a/backport/Makefile.kernel b/backport/Makefile.kernel
index e2a1a263..373fed96 100644
--- a/backport/Makefile.kernel
+++ b/backport/Makefile.kernel
@@ -39,6 +39,7 @@ obj-y += compat/
obj-$(CPTCFG_CFG80211) += net/wireless/
obj-$(CPTCFG_MAC80211) += net/mac80211/
+obj-$(CPTCFG_QRTR) += net/qrtr/
obj-$(CPTCFG_MHI_BUS) += drivers/bus/mhi/
obj-$(CPTCFG_WLAN) += drivers/net/wireless/
obj-$(CPTCFG_SSB) += drivers/ssb/
diff --git a/copy-list b/copy-list
index 1be2285e..480a9fb3 100644
--- a/copy-list
+++ b/copy-list
@@ -36,6 +36,8 @@ include/linux/wireless.h
include/uapi/linux/wireless.h
include/linux/ieee80211.h
include/linux/pci_ids.h
+include/uapi/linux/qrtr.h
+include/trace/events/qrtr.h
include/uapi/linux/pci_regs.h
include/linux/mmc/sdio_ids.h
include/linux/ath9k_platform.h
@@ -83,6 +85,7 @@ crypto/asymmetric_keys/x509_public_key.c -> compat/verification/x509_public_key.
net/Makefile
net/Kconfig
+net/qrtr/
net/wireless/
net/mac80211/
# MPLS labels, checked on skb->protocol on the
diff --git a/dependencies b/dependencies
index 623763a2..5de1bbe1 100644
--- a/dependencies
+++ b/dependencies
@@ -40,3 +40,6 @@ RTL8723BS 5.4
# ida_alloc(), xarray
MHI_BUS 4.19
+
+# sock_gettstamp()
+QRTR 5.2