From a1044e36e457fb6dbdf90ce756d578b251d99b5e Mon Sep 17 00:00:00 2001 From: Oliver Hartkopp Date: Thu, 2 Dec 2010 10:57:59 +0000 Subject: can: add slcan driver for serial/USB-serial CAN adapters This patch adds support for serial/USB-serial CAN adapters implementing the LAWICEL ASCII protocol for CAN frame transport over serial lines. The driver implements the SLCAN line discipline and is heavily based on the slip.c driver. Therefore the code style remains similar to slip.c to be able to apply changes of the SLIP driver to the SLCAN driver easily. For more details see the slcan Kconfig entry. Signed-off-by: Oliver Hartkopp Signed-off-by: David S. Miller --- drivers/net/can/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/net/can/Makefile') diff --git a/drivers/net/can/Makefile b/drivers/net/can/Makefile index 90af15a..07ca159 100644 --- a/drivers/net/can/Makefile +++ b/drivers/net/can/Makefile @@ -3,6 +3,7 @@ # obj-$(CONFIG_CAN_VCAN) += vcan.o +obj-$(CONFIG_CAN_SLCAN) += slcan.o obj-$(CONFIG_CAN_DEV) += can-dev.o can-dev-y := dev.o -- cgit v1.1