summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2026-03-02 12:28:08 +0300
committerAndrew Morton <akpm@linux-foundation.org>2026-03-28 07:19:39 +0300
commit512e19a82bee561b8adf11fc37413d24b01382c8 (patch)
tree09e7b58efe0e19fe9463c6ff754931d1c2536a10
parent7eece6917c541af24a6161b10a150b5744695f80 (diff)
downloadlinux-512e19a82bee561b8adf11fc37413d24b01382c8.tar.xz
lib: math: polynomial: don't use 'proxy' headers
Update header inclusions to follow IWYU (Include What You Use) principle. Link: https://lkml.kernel.org/r/20260302092831.2267785-3-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Kuan-Wei Chiu <visitorckw@gmail.com> Cc: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--lib/math/polynomial.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/math/polynomial.c b/lib/math/polynomial.c
index 66d383445fec..8c622099ef81 100644
--- a/lib/math/polynomial.c
+++ b/lib/math/polynomial.c
@@ -10,7 +10,8 @@
*
*/
-#include <linux/kernel.h>
+#include <linux/export.h>
+#include <linux/math.h>
#include <linux/module.h>
#include <linux/polynomial.h>