From f937e61a9ab583fe6665875971c55447ffb3a378 Mon Sep 17 00:00:00 2001 From: Luca Coelho Date: Sun, 18 Feb 2018 15:24:55 +0200 Subject: backport: add new build_bug.h file Some of the code in bug.h was moved into a new build_bug.h file. Add a backport that includes bug.h in the case of older kernels. Signed-off-by: Luca Coelho Signed-off-by: Johannes Berg --- backport/backport-include/linux/build_bug.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 backport/backport-include/linux/build_bug.h diff --git a/backport/backport-include/linux/build_bug.h b/backport/backport-include/linux/build_bug.h new file mode 100644 index 00000000..13ee5d6a --- /dev/null +++ b/backport/backport-include/linux/build_bug.h @@ -0,0 +1,10 @@ +#ifndef __BP_BUILD_BUG_H +#define __BP_BUILD_BUG_H + +#if LINUX_VERSION_IS_GEQ(4,13,0) +#include_next +#else /* LINUX_VERSION_IS_GEQ(4,13,0) */ +#include +#endif /* LINUX_VERSION_IS_GEQ(4,13,0) */ + +#endif /* __BP_BUILD_BUG_H */ -- cgit v1.2.3