From 4995b9c979a3729b88ebe51575bd82242143ba5a Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Wed, 11 Dec 2024 16:34:41 +0100 Subject: Fix compile on Linux 6.11+ --- src/kernel/xloop_main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/kernel/xloop_main.c') diff --git a/src/kernel/xloop_main.c b/src/kernel/xloop_main.c index cff7aa3..067159a 100644 --- a/src/kernel/xloop_main.c +++ b/src/kernel/xloop_main.c @@ -12,6 +12,8 @@ #include "xloop_main_4.18.c" #elif LINUX_VERSION_CODE < KERNEL_VERSION(6, 6, 0) #include "xloop_main_5.15.c" -#else +#elif LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0) #include "xloop_main_6.6.c" +#else +#include "xloop_main_6.11.c" #endif -- cgit v1.2.3-55-g7522