From 28fb4e59a47d7f1f0c7a26d2ed3a671c26158536 Mon Sep 17 00:00:00 2001 From: Bjorn Andersson Date: Thu, 26 Apr 2018 22:28:49 -0700 Subject: net: qrtr: Expose tunneling endpoint to user space This implements a misc character device named "qrtr-tun" for the purpose of allowing user space applications to implement endpoints in the qrtr network. This allows more advanced (and dynamic) testing of the qrtr code as well as opens up the ability of tunneling qrtr over a network or USB link. Signed-off-by: Bjorn Andersson Signed-off-by: David S. Miller --- net/qrtr/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'net/qrtr/Makefile') diff --git a/net/qrtr/Makefile b/net/qrtr/Makefile index ab09e40f7c74..be012bfd3e52 100644 --- a/net/qrtr/Makefile +++ b/net/qrtr/Makefile @@ -2,3 +2,5 @@ obj-$(CONFIG_QRTR) := qrtr.o obj-$(CONFIG_QRTR_SMD) += qrtr-smd.o qrtr-smd-y := smd.o +obj-$(CONFIG_QRTR_TUN) += qrtr-tun.o +qrtr-tun-y := tun.o -- cgit v1.2.3-59-g8ed1b