In kernel <= 2.6.25 linux/semaphore.h does not exist. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- include/linux/semaphore.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) create mode 100644 include/linux/semaphore.h diff --git a/include/linux/semaphore.h b/include/linux/semaphore.h new file mode 100644 index 0000000..78af4db --- /dev/null +++ b/include/linux/semaphore.h @@ -0,0 +1,12 @@ +#ifndef _COMPAT_LINUX_SEMAPHORE_H +#define _COMPAT_LINUX_SEMAPHORE_H 1 + +#include <linux/version.h> + +#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,25)) +#include_next <linux/semaphore.h> +#else +#include <asm/semaphore.h> +#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,25)) */ + +#endif /* _COMPAT_LINUX_SEMAPHORE_H */ -- 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