From: Andy Shevchenko Date: Tue, 3 Jan 2023 12:19:37 +0000 (+0200) Subject: util_macros.h: add missing inclusion X-Git-Tag: v6.3-rc1~112^2~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9456d539acde9f92a52ffe477b4b86e35d214d1a;p=thirdparty%2Flinux.git util_macros.h: add missing inclusion The header is the direct user of definitions from the math.h, include it. Link: https://lkml.kernel.org/r/20230103121937.32085-1-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko Signed-off-by: Andrew Morton --- diff --git a/include/linux/util_macros.h b/include/linux/util_macros.h index 72299f261b253..b641ec00be3e7 100644 --- a/include/linux/util_macros.h +++ b/include/linux/util_macros.h @@ -2,6 +2,8 @@ #ifndef _LINUX_HELPER_MACROS_H_ #define _LINUX_HELPER_MACROS_H_ +#include + #define __find_closest(x, a, as, op) \ ({ \ typeof(as) __fc_i, __fc_as = (as) - 1; \