mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ffd980f976
This patch adds the CAN broadcast manager (bcm) protocol. Signed-off-by: Oliver Hartkopp <oliver.hartkopp@volkswagen.de> Signed-off-by: Urs Thuermann <urs.thuermann@volkswagen.de> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
235 B
Makefile
12 lines
235 B
Makefile
#
|
|
# Makefile for the Linux Controller Area Network core.
|
|
#
|
|
|
|
obj-$(CONFIG_CAN) += can.o
|
|
can-objs := af_can.o proc.o
|
|
|
|
obj-$(CONFIG_CAN_RAW) += can-raw.o
|
|
can-raw-objs := raw.o
|
|
|
|
obj-$(CONFIG_CAN_BCM) += can-bcm.o
|
|
can-bcm-objs := bcm.o
|