From e7db808ef507c163045db7081b45515868bbc9ce Mon Sep 17 00:00:00 2001 From: Arnaud Lacombe Date: Mon, 23 Nov 2009 21:24:23 -0500 Subject: [PATCH] Add skeleton for 2.6.19 Signed-off-by: Arnaud Lacombe --- Makefile | 1 + compat-2.6.19.c | 18 ++++++++++++++++++ compat-2.6.19.h | 12 ++++++++++++ compat.h | 1 + 4 files changed, 32 insertions(+) create mode 100644 compat-2.6.19.c create mode 100644 compat-2.6.19.h diff --git a/Makefile b/Makefile index 9afc687..3f1a4ad 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ compat-y += main.o # Compat kernel compatibility code compat-$(CONFIG_COMPAT_KERNEL_14) += compat-2.6.14.o compat-$(CONFIG_COMPAT_KERNEL_18) += compat-2.6.18.o +compat-$(CONFIG_COMPAT_KERNEL_19) += compat-2.6.19.o compat-$(CONFIG_COMPAT_KERNEL_22) += compat-2.6.22.o compat-$(CONFIG_COMPAT_KERNEL_23) += compat-2.6.23.o compat-$(CONFIG_COMPAT_KERNEL_24) += compat-2.6.24.o diff --git a/compat-2.6.19.c b/compat-2.6.19.c new file mode 100644 index 0000000..fc75b64 --- /dev/null +++ b/compat-2.6.19.c @@ -0,0 +1,18 @@ +/* + * Copyright 2007 Luis R. Rodriguez + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * Compatibility file for Linux wireless for kernels 2.6.19. + */ + +#include + +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)) + +/* 2.6.19 compat code goes here */ + +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19) */ + diff --git a/compat-2.6.19.h b/compat-2.6.19.h new file mode 100644 index 0000000..7967390 --- /dev/null +++ b/compat-2.6.19.h @@ -0,0 +1,12 @@ +#ifndef LINUX_26_19_COMPAT_H +#define LINUX_26_19_COMPAT_H + +#include +#include + +/* Compat work for 2.6.19 */ +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)) + +#endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)) */ + +#endif /* LINUX_26_19_COMPAT_H */ diff --git a/compat.h b/compat.h index 433840c..f835aef 100644 --- a/compat.h +++ b/compat.h @@ -11,6 +11,7 @@ #include "compat-2.6.14.h" #include "compat-2.6.18.h" +#include "compat-2.6.19.h" #include "compat-2.6.22.h" #include "compat-2.6.23.h" #include "compat-2.6.24.h" -- 2.41.0