diff options
author | Oliver Hartkopp <socketcan@hartkopp.net> | 2017-04-25 08:19:44 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2017-04-25 09:04:30 +0200 |
commit | a8f820a380a2a06fc4fe1a54159067958f800929 (patch) | |
tree | 4bb3226294328510737edbffe3d245166a8ed6fe /drivers/net/can/Makefile | |
parent | 1ef83310b81551079af992c4cbb5e089dd1397be (diff) | |
download | linux-a8f820a380a2a06fc4fe1a54159067958f800929.tar.bz2 |
can: add Virtual CAN Tunnel driver (vxcan)
Similar to the virtual ethernet driver veth, vxcan implements a
local CAN traffic tunnel between two virtual CAN network devices.
See Kconfig entry for details.
Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can/Makefile')
-rw-r--r-- | drivers/net/can/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/can/Makefile b/drivers/net/can/Makefile index 8581e2b3e87f..4aabbee133b8 100644 --- a/drivers/net/can/Makefile +++ b/drivers/net/can/Makefile @@ -3,6 +3,7 @@ # obj-$(CONFIG_CAN_VCAN) += vcan.o +obj-$(CONFIG_CAN_VXCAN) += vxcan.o obj-$(CONFIG_CAN_SLCAN) += slcan.o obj-$(CONFIG_CAN_DEV) += can-dev.o |