Skip to content

Commit bb47855

Browse files
Stephane Grosjeanmarckleinebudde
authored andcommitted
can: usb: PEAK-System Technik USB adapters driver core
This patch adds the core of the peak_usb driver which handles PEAK-System Technik PCAN USB adapters. It defines the parts which are common to the PCAN-USB adapters: can network interfaces management, network-to/from-usb data path interface, timestamps management... Tested-by: Oliver Hartkopp <[email protected]> Acked-by: Wolfgang Grandegger <[email protected]> Signed-off-by: Stephane Grosjean <[email protected]> Signed-off-by: Marc Kleine-Budde <[email protected]>
1 parent 2b61972 commit bb47855

File tree

5 files changed

+1106
-0
lines changed

5 files changed

+1106
-0
lines changed

drivers/net/can/usb/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,10 @@ config CAN_ESD_USB2
1313
This driver supports the CAN-USB/2 interface
1414
from esd electronic system design gmbh (http://www.esd.eu).
1515

16+
config CAN_PEAK_USB
17+
tristate "PEAK PCAN-USB/USB Pro interfaces"
18+
---help---
19+
This driver supports the PCAN-USB and PCAN-USB Pro adapters
20+
from PEAK-System Technik (http://www.peak-system.com).
21+
1622
endmenu

drivers/net/can/usb/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44

55
obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o
66
obj-$(CONFIG_CAN_ESD_USB2) += esd_usb2.o
7+
obj-$(CONFIG_CAN_PEAK_USB) += peak_usb/
78

89
ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
obj-$(CONFIG_CAN_PEAK_USB) += peak_usb.o
2+
peak_usb-y = pcan_usb_core.o

0 commit comments

Comments
 (0)