[v1,4/8] linux/random.h: reduce dependencies on linux/kernel.h

Message ID 20240215093646.3265823-5-max.kellermann@ionos.com
State New
Headers
Series Fast kernel headers: split linux/kernel.h |

Commit Message

Max Kellermann Feb. 15, 2024, 9:36 a.m. UTC
  This header doesn't need kernel.h at all, but if we remove it, the
build breaks because kernel.h includes limits.h and log2.h, which
random.h needs.

list.h is also removed because it is not needed at all.

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
---
 include/linux/random.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/include/linux/random.h b/include/linux/random.h
index b0a940af4fff..3183025ddda9 100644
--- a/include/linux/random.h
+++ b/include/linux/random.h
@@ -4,8 +4,8 @@ 
 #define _LINUX_RANDOM_H
 
 #include <linux/bug.h>
-#include <linux/kernel.h>
-#include <linux/list.h>
+#include <linux/limits.h> // for U32_MAX
+#include <linux/log2.h> // for is_power_of_2()
 
 #include <uapi/linux/random.h>