diff options
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 267b344099c0..836e80d5cb9f 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -554,6 +554,8 @@ struct dentry *sh_debugfs_root; | |||
554 | static int __init sh_debugfs_init(void) | 554 | static int __init sh_debugfs_init(void) |
555 | { | 555 | { |
556 | sh_debugfs_root = debugfs_create_dir("sh", NULL); | 556 | sh_debugfs_root = debugfs_create_dir("sh", NULL); |
557 | if (!sh_debugfs_root) | ||
558 | return -ENOMEM; | ||
557 | if (IS_ERR(sh_debugfs_root)) | 559 | if (IS_ERR(sh_debugfs_root)) |
558 | return PTR_ERR(sh_debugfs_root); | 560 | return PTR_ERR(sh_debugfs_root); |
559 | 561 | ||