On older kernel versions we have to include pcmcia/cs_types.h and pcmcia/cs.h before pcmcia/cistpl.h. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- include/pcmcia/cistpl.h | 10 ++++++++++ include/pcmcia/cs.h | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 include/pcmcia/cistpl.h delete mode 100644 include/pcmcia/cs.h diff --git a/include/pcmcia/cistpl.h b/include/pcmcia/cistpl.h new file mode 100644 index 0000000..789dc59 --- /dev/null +++ b/include/pcmcia/cistpl.h @@ -0,0 +1,10 @@ +#include <linux/version.h> + +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) +#include <pcmcia/cs_types.h> +#endif +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37) +#include <pcmcia/cs.h> +#endif + +#include_next <pcmcia/cistpl.h> diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h deleted file mode 100644 index 1c5e0fa..0000000 --- a/include/pcmcia/cs.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef _COMPAT_PCMCIA_CS_H -#define _COMPAT_PCMCIA_CS_H -#include <linux/version.h> - -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) -#include <pcmcia/cs_types.h> -#endif - -#include_next <pcmcia/cs.h> -#endif -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html