From 7accebad78e6a37cdb6ca2eb6a34fd6d56f60950 Mon Sep 17 00:00:00 2001 From: Frank Mori Hess Date: Thu, 7 Jun 2001 23:36:37 +0000 Subject: [PATCH] attempting to fix 2.0 kernels that don't seem to define KERNEL_VERSION(a,b,c) --- include/linux/version.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/linux/version.h b/include/linux/version.h index f0c082fc..03c34946 100644 --- a/include/linux/version.h +++ b/include/linux/version.h @@ -2,3 +2,7 @@ #include #include_next +#ifndef KERNEL_VERSION +#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) +#endif + -- 2.26.2