mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
a1044e36e4
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>
24 lines
606 B
Makefile
24 lines
606 B
Makefile
#
|
|
# Makefile for the Linux Controller Area Network drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_CAN_VCAN) += vcan.o
|
|
obj-$(CONFIG_CAN_SLCAN) += slcan.o
|
|
|
|
obj-$(CONFIG_CAN_DEV) += can-dev.o
|
|
can-dev-y := dev.o
|
|
|
|
obj-y += usb/
|
|
|
|
obj-$(CONFIG_CAN_SJA1000) += sja1000/
|
|
obj-$(CONFIG_CAN_MSCAN) += mscan/
|
|
obj-$(CONFIG_CAN_AT91) += at91_can.o
|
|
obj-$(CONFIG_CAN_TI_HECC) += ti_hecc.o
|
|
obj-$(CONFIG_CAN_MCP251X) += mcp251x.o
|
|
obj-$(CONFIG_CAN_BFIN) += bfin_can.o
|
|
obj-$(CONFIG_CAN_JANZ_ICAN3) += janz-ican3.o
|
|
obj-$(CONFIG_CAN_FLEXCAN) += flexcan.o
|
|
obj-$(CONFIG_PCH_CAN) += pch_can.o
|
|
|
|
ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG
|