From 4841b2863c1ad0a70e9d8d9334f82997195f6b2e Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Tue, 2 Jan 2024 10:24:49 -0500 Subject: [PATCH] 3.0.4 - Update copyright - Add Fedora package requirements to README --- CHANGELOG | 5 +++++ README.md | 2 +- intrepid.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b79a4d0..7b40e9d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +v3.0.4 + Update copyright + Add Fedora package requirements to README + Fix for newer 6.4.x Kernel, class_create() sig changed (Doug Potts ) + v3.0.3 Update daemon version requirement to 3.1.* diff --git a/README.md b/README.md index f0c657d..045cb45 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Version 3.0.3 +Version 3.0.4 This is the kernel object portion of the Intrepid Control Systems SocketCAN support. For SocketCAN to work with Intrepid devices you will need to have this kernel object loaded on your system. Once the module is built and loaded run [icsscand](https://github.com/intrepidcs/icsscand) to turn on SocketCAN support. diff --git a/intrepid.c b/intrepid.c index 1f95768..ac42a23 100644 --- a/intrepid.c +++ b/intrepid.c @@ -58,7 +58,7 @@ #define KO_DESC "Netdevice driver for Intrepid CAN/Ethernet devices" #define KO_MAJOR 3 #define KO_MINOR 0 -#define KO_PATCH 3 +#define KO_PATCH 4 #define KO_VERSION str(KO_MAJOR) "." str(KO_MINOR) "." str(KO_PATCH) #define KO_VERSION_INT (KO_MAJOR << 16) | (KO_MINOR << 8) | KO_PATCH