aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-07 16:47:32 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-07 16:47:32 -0700
commitfef15d2f3d97c9858694f234af94a4ef40d86679 (patch)
tree6b3b6e1cf69eec40722b6a5ce0cc811d3e3cf24a /lib
parentparams: replace printk(KERN_<LVL>...) with pr_<lvl>(...) (diff)
downloadlinux-dev-fef15d2f3d97c9858694f234af94a4ef40d86679.tar.xz
linux-dev-fef15d2f3d97c9858694f234af94a4ef40d86679.zip
Revert "dynamic_debug: remove unneeded includes"
This reverts commit 04db6e5fddca55186b6a74339a62c800150648bc. 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 <sfr@canb.auug.org.au> Cc: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/dynamic_debug.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
index fc5d270751a7..7ca29a0a3019 100644
--- a/lib/dynamic_debug.c
+++ b/lib/dynamic_debug.c
@@ -14,14 +14,24 @@
#include <linux/kernel.h>
#include <linux/module.h>
+#include <linux/moduleparam.h>
+#include <linux/kallsyms.h>
+#include <linux/types.h>
#include <linux/mutex.h>
+#include <linux/proc_fs.h>
#include <linux/seq_file.h>
+#include <linux/list.h>
+#include <linux/sysctl.h>
#include <linux/ctype.h>
+#include <linux/string.h>
+#include <linux/uaccess.h>
#include <linux/dynamic_debug.h>
#include <linux/debugfs.h>
#include <linux/slab.h>
+#include <linux/jump_label.h>
#include <linux/hardirq.h>
#include <linux/sched.h>
+#include <linux/device.h>
#include <linux/netdevice.h>
extern struct _ddebug __start___verbose[];