Skip to content

Commit fef15d2

Browse files
committed
Revert "dynamic_debug: remove unneeded includes"
This reverts commit 04db6e5. Odds are, we really don't want to revert all of these, and need to be more careful in the future to make sure we don't break the build of other arches. Reported-by: Stephen Rothwell <[email protected]> Cc: Jim Cromie <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent b5f3abf commit fef15d2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/dynamic_debug.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,24 @@
1414

1515
#include <linux/kernel.h>
1616
#include <linux/module.h>
17+
#include <linux/moduleparam.h>
18+
#include <linux/kallsyms.h>
19+
#include <linux/types.h>
1720
#include <linux/mutex.h>
21+
#include <linux/proc_fs.h>
1822
#include <linux/seq_file.h>
23+
#include <linux/list.h>
24+
#include <linux/sysctl.h>
1925
#include <linux/ctype.h>
26+
#include <linux/string.h>
27+
#include <linux/uaccess.h>
2028
#include <linux/dynamic_debug.h>
2129
#include <linux/debugfs.h>
2230
#include <linux/slab.h>
31+
#include <linux/jump_label.h>
2332
#include <linux/hardirq.h>
2433
#include <linux/sched.h>
34+
#include <linux/device.h>
2535
#include <linux/netdevice.h>
2636

2737
extern struct _ddebug __start___verbose[];

0 commit comments

Comments
 (0)