diff options
| author | Andy Shevchenko <[email protected]> | 2024-02-15 16:22:55 +0200 |
|---|---|---|
| committer | Steven Rostedt (Google) <[email protected]> | 2024-02-15 12:16:46 -0500 |
| commit | 8a566f94104df87a067458351675129bb4e1ece2 (patch) | |
| tree | c7887aac1f384bbfae3de5a3b88586a5ca752adc /include/linux | |
| parent | 9b6326354cf9a41521b79287da3bfab022ae0b6d (diff) | |
seq_buf: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use)
principle.
Link: https://lkml.kernel.org/r/[email protected]
Cc: "Matthew Wilcox (Oracle)" <[email protected]>
Cc: Andrew Morton <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Signed-off-by: Steven Rostedt (Google) <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/seq_buf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index c44f4b47b945..07b26e751060 100644 --- a/include/linux/seq_buf.h +++ b/include/linux/seq_buf.h @@ -2,7 +2,10 @@ #ifndef _LINUX_SEQ_BUF_H #define _LINUX_SEQ_BUF_H -#include <linux/fs.h> +#include <linux/bug.h> +#include <linux/minmax.h> +#include <linux/seq_file.h> +#include <linux/types.h> /* * Trace sequences are used to allow a function to call several other functions |