diff -pruN 11-2/debian/changelog 11-3/debian/changelog
--- 11-2/debian/changelog	2022-11-26 07:23:34.000000000 +0000
+++ 11-3/debian/changelog	2023-06-16 03:52:28.000000000 +0000
@@ -1,3 +1,12 @@
+digimend-dkms (11-3) unstable; urgency=medium
+
+  * debian/control
+    - Bump standards-version to 4.6.2. No changes are required.
+  * debian/patches/support-kernel-6.3.patch
+    * Fix FTBFS error with kernel 6.3 or later. (Closes: #1037995)
+
+ -- Kentaro Hayashi <kenhys@xdump.org>  Fri, 16 Jun 2023 12:52:28 +0900
+
 digimend-dkms (11-2) unstable; urgency=medium
 
   * debian/control
diff -pruN 11-2/debian/control 11-3/debian/control
--- 11-2/debian/control	2022-11-26 07:23:34.000000000 +0000
+++ 11-3/debian/control	2023-06-16 03:52:28.000000000 +0000
@@ -5,7 +5,7 @@ Maintainer: Kentaro Hayashi <kenhys@xdum
 Build-Depends:
  debhelper-compat (= 13),
  dh-sequence-dkms,
-Standards-Version: 4.6.1
+Standards-Version: 4.6.2
 Homepage: https://github.com/DIGImend/digimend-kernel-drivers
 Vcs-Git: https://salsa.debian.org/debian/digimend-dkms.git
 Vcs-Browser: https://salsa.debian.org/debian/digimend-dkms
diff -pruN 11-2/debian/patches/series 11-3/debian/patches/series
--- 11-2/debian/patches/series	2022-11-26 07:23:34.000000000 +0000
+++ 11-3/debian/patches/series	2023-06-16 03:52:28.000000000 +0000
@@ -1 +1,2 @@
 skip-without-CONFIG_USB_HID.patch
+support-kernel-6.3.patch
diff -pruN 11-2/debian/patches/support-kernel-6.3.patch 11-3/debian/patches/support-kernel-6.3.patch
--- 11-2/debian/patches/support-kernel-6.3.patch	1970-01-01 00:00:00.000000000 +0000
+++ 11-3/debian/patches/support-kernel-6.3.patch	2023-06-16 03:52:28.000000000 +0000
@@ -0,0 +1,31 @@
+From: Slava Barinov <rayslava@gmail.com>
+Date: Wed, 26 Apr 2023 12:37:02 +0300
+Subject: uclogic: Switch from hid_is_using_ll_driver to hid_is_usb
+
+The hid_is_using_ll_driver function was deprecated and has been removed in
+Linux 6.3
+
+Description: uclogic: Switch from hid_is_using_ll_driver to hid_is_usb
+Author: Slava Barinov <rayslava@gmail.com>
+Origin: https://github.com/DIGImend/digimend-kernel-drivers/commit/eca6e1b701bffb80a293234a485ebf6b4bc85562.patch
+Forwarded: not-needed
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037995
+---
+ hid-uclogic-params.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/hid-uclogic-params.c b/hid-uclogic-params.c
+index 86ea181..c408b9e 100644
+--- a/hid-uclogic-params.c
++++ b/hid-uclogic-params.c
+@@ -1223,7 +1223,9 @@ int uclogic_params_init(struct uclogic_params *params,
+ 
+ 	/* Check arguments */
+ 	if (params == NULL || hdev == NULL
+-#if KERNEL_VERSION(4, 14, 0) <= LINUX_VERSION_CODE
++#if KERNEL_VERSION(6, 3, 0) <= LINUX_VERSION_CODE
++	    || !hid_is_usb(hdev)
++#elif KERNEL_VERSION(4, 14, 0) <= LINUX_VERSION_CODE
+ 	    || !hid_is_using_ll_driver(hdev, &usb_hid_driver)
+ #endif
+ 	   ) {
