diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-11 13:28:46 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-12-20 19:26:31 -0500 |
commit | 097691960f7084ca82adb2e866d03a81753f0cb7 (patch) | |
tree | e189535218d2569e536f684d25ac24af2fe24247 | |
parent | 6dfeff09d5ad331905c7066207053d286d58ac83 (diff) |
rslib: kill bogus dependency on list.h
list_head is defined in types.h, not list.h - this kills a sched.h
dependency.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | include/linux/rslib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/rslib.h b/include/linux/rslib.h index 238bb85243d3..a04dacbdc8ae 100644 --- a/include/linux/rslib.h +++ b/include/linux/rslib.h @@ -10,7 +10,6 @@ #ifndef _RSLIB_H_ #define _RSLIB_H_ -#include <linux/list.h> #include <linux/types.h> /* for gfp_t */ #include <linux/gfp.h> /* for GFP_KERNEL */ |