From: "Luis R. Rodriguez" <mcgrof@xxxxxxxxxxxxxxxx> We need to ifdef correctly before assuming we can include that header. Signed-off-by: Luis R. Rodriguez <mcgrof@xxxxxxxxxxxxxxxx> --- backport/backport-include/linux/math64.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backport/backport-include/linux/math64.h b/backport/backport-include/linux/math64.h index d551db6..b65fab3 100644 --- a/backport/backport-include/linux/math64.h +++ b/backport/backport-include/linux/math64.h @@ -2,7 +2,12 @@ #define _COMPAT_LINUX_MATH64_H 1 #include <linux/version.h> +#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,25)) #include_next <linux/math64.h> +#else +#include <linux/types.h> +#include <asm/div64.h> +#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,25)) */ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) #if BITS_PER_LONG == 64 -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html