diff options
Diffstat (limited to 'arch/sh/kernel/setup.c')
-rw-r--r-- | arch/sh/kernel/setup.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index e769401a78ba..f24d0ea8be2d 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <linux/module.h> | 24 | #include <linux/module.h> |
25 | #include <linux/smp.h> | 25 | #include <linux/smp.h> |
26 | #include <linux/err.h> | 26 | #include <linux/err.h> |
27 | #include <linux/debugfs.h> | ||
28 | #include <linux/crash_dump.h> | 27 | #include <linux/crash_dump.h> |
29 | #include <linux/mmzone.h> | 28 | #include <linux/mmzone.h> |
30 | #include <linux/clk.h> | 29 | #include <linux/clk.h> |
@@ -458,17 +457,3 @@ const struct seq_operations cpuinfo_op = { | |||
458 | .show = show_cpuinfo, | 457 | .show = show_cpuinfo, |
459 | }; | 458 | }; |
460 | #endif /* CONFIG_PROC_FS */ | 459 | #endif /* CONFIG_PROC_FS */ |
461 | |||
462 | struct dentry *sh_debugfs_root; | ||
463 | |||
464 | static int __init sh_debugfs_init(void) | ||
465 | { | ||
466 | sh_debugfs_root = debugfs_create_dir("sh", NULL); | ||
467 | if (!sh_debugfs_root) | ||
468 | return -ENOMEM; | ||
469 | if (IS_ERR(sh_debugfs_root)) | ||
470 | return PTR_ERR(sh_debugfs_root); | ||
471 | |||
472 | return 0; | ||
473 | } | ||
474 | arch_initcall(sh_debugfs_init); | ||