mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 08:44:14 +08:00
c18ce101f2
This patch adds the CAN raw 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>
10 lines
176 B
Makefile
10 lines
176 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
|