File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 2
2
#ifndef _LINUX_SEQ_BUF_H
3
3
#define _LINUX_SEQ_BUF_H
4
4
5
- #include <linux/fs.h>
5
+ #include <linux/bug.h>
6
+ #include <linux/minmax.h>
7
+ #include <linux/seq_file.h>
8
+ #include <linux/types.h>
6
9
7
10
/*
8
11
* Trace sequences are used to allow a function to call several other functions
Original file line number Diff line number Diff line change 13
13
* seq_buf_init() more than once to reset the seq_buf to start
14
14
* from scratch.
15
15
*/
16
- #include <linux/uaccess.h>
17
- #include <linux/seq_file.h>
16
+
17
+ #include <linux/bug.h>
18
+ #include <linux/err.h>
19
+ #include <linux/export.h>
20
+ #include <linux/hex.h>
21
+ #include <linux/minmax.h>
22
+ #include <linux/printk.h>
18
23
#include <linux/seq_buf.h>
24
+ #include <linux/seq_file.h>
25
+ #include <linux/sprintf.h>
26
+ #include <linux/string.h>
27
+ #include <linux/types.h>
28
+ #include <linux/uaccess.h>
19
29
20
30
/**
21
31
* seq_buf_can_fit - can the new data fit in the current buffer?
You can’t perform that action at this time.
0 commit comments