mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 00:26:47 +07:00
7259124eac
First part of adding support for Kvaser USB device family "hydra". Split kvaser_usb.c into kvaser_usb/kvaser_usb{.h,_core.c,_leaf.c}. kvaser_usb_core.c contains common functionality, such as USB writing/reading and allocation of netdev. kvaser_usb_leaf.c contains device specific code, used in kvaser_usb_core.c. struct kvaser_usb_dev_ops contains device specific functions that are common for all devices in the family. While, struct kvaser_usb_dev_cfg describes the device configurations in terms of CAN clock frequency, timestamp frequency and CAN controller bittiming constants. Signed-off-by: Jimmy Assarsson <extja@kvaser.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
14 lines
419 B
Makefile
14 lines
419 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux Controller Area Network USB drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_CAN_8DEV_USB) += usb_8dev.o
|
|
obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o
|
|
obj-$(CONFIG_CAN_ESD_USB2) += esd_usb2.o
|
|
obj-$(CONFIG_CAN_GS_USB) += gs_usb.o
|
|
obj-$(CONFIG_CAN_KVASER_USB) += kvaser_usb/
|
|
obj-$(CONFIG_CAN_MCBA_USB) += mcba_usb.o
|
|
obj-$(CONFIG_CAN_PEAK_USB) += peak_usb/
|
|
obj-$(CONFIG_CAN_UCAN) += ucan.o
|