Skip to content

Commit 2ca67e8

Browse files
Set version to 1.14.9
1 parent 0f37d18 commit 2ca67e8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

ci/deb_config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ evdi_package_name='evdi'
88
evdi_maintainer='Synaptics Technical Support <technical-enquiries@synaptics.com>'
99

1010
# shellcheck disable=SC2034
11-
evdi_version='1.14.8'
11+
evdi_version='1.14.9'
1212

1313
# shellcheck disable=SC2034
1414
evdi_description="Extensible Virtual Display Interface (EVDI) is a Linux® kernel module that enables management of multiple screens.

library/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PKG_CONFIG ?= pkg-config
1111
DEPS = evdi_ioctl.h
1212
CFLAGS := -I../module -std=gnu99 -fPIC -D_FILE_OFFSET_BITS=64 $(CFLAGS) $$($(PKG_CONFIG) --cflags-only-I libdrm)
1313

14-
LIBVER := 1.14.8
14+
LIBVER := 1.14.9
1515
LIBABI := 1
1616

1717
PREFIX ?= /usr/local

library/evdi_lib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extern "C" {
1515

1616
#define LIBEVDI_VERSION_MAJOR 1
1717
#define LIBEVDI_VERSION_MINOR 14
18-
#define LIBEVDI_VERSION_PATCH 8
18+
#define LIBEVDI_VERSION_PATCH 9
1919

2020
struct evdi_lib_version {
2121
int version_major;

module/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ CP ?= cp
6363
DKMS ?= dkms
6464
RM ?= rm
6565

66-
MODVER=1.14.8
66+
MODVER=1.14.9
6767

6868
ifeq ($(KVER),)
6969
KVER := $(shell uname -r)

module/dkms.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88

99
PACKAGE_NAME="evdi"
10-
PACKAGE_VERSION=1.14.8
10+
PACKAGE_VERSION=1.14.9
1111
AUTOINSTALL=yes
1212

1313
MAKE[0]="make all INCLUDEDIR=/lib/modules/$kernelver/build/include KVERSION=$kernelver DKMS_BUILD=1"

module/dkms_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: GPL-2.0-only
33
# Copyright (c) 2023 DisplayLink (UK) Ltd.
44

5-
evdi_version='1.14.8'
5+
evdi_version='1.14.9'
66

77
EVDI_DIR=$(dirname "${BASH_SOURCE[0]}")
88
EVDI_REBOOT_RATIONALE=

module/evdi_platform_drv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ struct platform_device_info;
2929
#define DRIVER_DESC "Extensible Virtual Display Interface"
3030
#if KERNEL_VERSION(6, 14, 0) <= LINUX_VERSION_CODE
3131
#else
32-
#define DRIVER_DATE "20241216"
32+
#define DRIVER_DATE "20250325"
3333
#endif
3434

3535
#define DRIVER_MAJOR 1
3636
#define DRIVER_MINOR 14
37-
#define DRIVER_PATCH 8
37+
#define DRIVER_PATCH 9
3838

3939
void evdi_platform_remove_all_devices(struct device *device);
4040
unsigned int evdi_platform_device_count(struct device *device);

0 commit comments

Comments
 (0)