the header <pcmcia/cs.h> in versions < 2.6.36 requires types defined in <pcmcia/cs_types.h> so include it first. Signed-off-by: Kshitij Kulshreshtha <kkhere.geo@xxxxxxxxx> --- include/pcmcia/cs.h | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) create mode 100644 include/pcmcia/cs.h diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h new file mode 100644 index 0000000..1c5e0fa --- /dev/null +++ b/include/pcmcia/cs.h @@ -0,0 +1,10 @@ +#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.1 -- 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