*Reason for resend:* the patch does not reach the linux-can mailing list because it is over the 100000 characters limit. Adding linux-kernel@xxxxxxxxxxxxxxx in CC so that people who are not in CC can get it from the general mailing list instead. Here comes the twelfth iteration of the ETAS es58x usb driver. The major difference from previous version is the total removal of spinlocks. Aside of that, I also implemented the TDC accordingly to the patch series which I submitted here two weeks ago. This patch series is based on linux-can-next/testing. It requires the latest patches in that branch to compile. Crossing fingers, hoping that we are now close to a release. Thank you in advance for your review and for your time! Yours sincerely, Vincent Vincent Mailhol (1): can: usb: etas_es58X: add support for ETAS ES58X CAN USB interfaces drivers/net/can/usb/Kconfig | 10 + drivers/net/can/usb/Makefile | 1 + drivers/net/can/usb/etas_es58x/Makefile | 3 + drivers/net/can/usb/etas_es58x/es581_4.c | 525 ++++ drivers/net/can/usb/etas_es58x/es581_4.h | 208 ++ drivers/net/can/usb/etas_es58x/es58x_core.c | 2404 +++++++++++++++++++ drivers/net/can/usb/etas_es58x/es58x_core.h | 690 ++++++ drivers/net/can/usb/etas_es58x/es58x_fd.c | 600 +++++ drivers/net/can/usb/etas_es58x/es58x_fd.h | 243 ++ 9 files changed, 4684 insertions(+) create mode 100644 drivers/net/can/usb/etas_es58x/Makefile create mode 100644 drivers/net/can/usb/etas_es58x/es581_4.c create mode 100644 drivers/net/can/usb/etas_es58x/es581_4.h create mode 100644 drivers/net/can/usb/etas_es58x/es58x_core.c create mode 100644 drivers/net/can/usb/etas_es58x/es58x_core.h create mode 100644 drivers/net/can/usb/etas_es58x/es58x_fd.c create mode 100644 drivers/net/can/usb/etas_es58x/es58x_fd.h -- 2.26.2