mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
afa17a500a
Taken from socketcan-svn, fixed remaining todos, cleaned up, tested with a phyCORE-MPC5200B-IO and a custom board. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Cc: Wolfgang Grandegger <wg@grandegger.com> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: David Miller <davem@davemloft.net> Signed-off-by: David S. Miller <davem@davemloft.net>
19 lines
412 B
Makefile
19 lines
412 B
Makefile
#
|
|
# Makefile for the Linux Controller Area Network drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_CAN_VCAN) += vcan.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
|
|
|
|
ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG
|