Fix support for kernels <5.12
	Tested on 5.4.0
pull/16/head v2.1.1
Paul Hollinsky 2022-04-01 14:24:37 -04:00
parent 7c2338125f
commit 6e9319c3f4
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
v2.1.1
Fix support for kernels <5.12
Tested on 5.4.0
v2.1.0
Implement proper functionality for echoing transmits
Transmit errors are now reported properly

View File

@ -57,7 +57,7 @@
#define KO_DESC "Netdevice driver for Intrepid CAN/Ethernet devices"
#define KO_MAJOR 2
#define KO_MINOR 1
#define KO_PATCH 0
#define KO_PATCH 1
#define KO_VERSION str(KO_MAJOR) "." str(KO_MINOR) "." str(KO_PATCH)
#define KO_VERSION_INT (KO_MAJOR << 16) | (KO_MINOR << 8) | KO_PATCH