diff options
author | Oliver Hartkopp <socketcan@hartkopp.net> | 2010-12-02 10:57:59 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-08 09:03:32 -0800 |
commit | a1044e36e457fb6dbdf90ce756d578b251d99b5e (patch) | |
tree | 8a121841aa13d7e873fa761623a79a96016aa142 /drivers/net/can/Makefile | |
parent | 58e481f66e31e9976558f3e4f709baf9201052fe (diff) | |
download | blackbird-op-linux-a1044e36e457fb6dbdf90ce756d578b251d99b5e.tar.gz blackbird-op-linux-a1044e36e457fb6dbdf90ce756d578b251d99b5e.zip |
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 <socketcan@hartkopp.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
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 90af15a4f106..07ca159ba3f9 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 |