[PATCH 62/75] header: Add linux/minmax.h
Hauke Mehrtens <[email protected]> Fri, 28 Jun 2024 01:47:48 +0200
| Newsgroups | org.kernel.vger.backports |
|---|---|
| Message-ID | <[email protected]> |
linux/minmax.h was extracted from linux/kernel.h, handle this on older kernel versions. Signed-off-by: Hauke Mehrtens <[email protected]> --- backport/backport-include/linux/minmax.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 backport/backport-include/linux/minmax.h diff --git a/backport/backport-include/linux/minmax.h b/backport/backport-include/linux/minmax.h new file mode 100644 index 00000000..7830c9ce --- /dev/null +++ b/backport/backport-include/linux/minmax.h @@ -0,0 +1,7 @@ +#include <linux/version.h> + +#if LINUX_VERSION_IS_GEQ(5,10,0) +#include_next <linux/minmax.h> +#else +#include <linux/kernel.h> +#endif -- 2.45.2