From ae705499aec99c52716a258cd7d5848b1408ffe1 Mon Sep 17 00:00:00 2001 From: Ian Abbott Date: Mon, 5 Sep 2011 13:29:20 +0100 Subject: [PATCH] Fix warnings about including deprecated Change Comedi's compatibility header so it only includes the real for kernel versions below 2.6.15. Previously it was included for kernel versions below 2.6.19 (when it was removed from the kernel sources) but wasn't needed for 2.6.15 onwards. Signed-off-by: Ian Abbott --- include/linux/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/config.h b/include/linux/config.h index 95cbcf64..08790704 100644 --- a/include/linux/config.h +++ b/include/linux/config.h @@ -5,7 +5,7 @@ #include -#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19) +#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 15) #include_next #endif -- 2.26.2