aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorZhaolei <zhaolei@cn.fujitsu.com>2008-10-17 07:25:03 -0400
committerPaul Mundt <lethal@linux-sh.org>2008-10-19 21:40:15 -0400
commit9986b311efdc9727a5a48f03c3dac3d536fbaa74 (patch)
tree7124d9785bf210d8bc79a604ff23dd1047051366 /arch
parenta3e0270663a520a2cb8c7418c098676f25478d2f (diff)
Fix debugfs_create_dir's error checking method for arch/sh/kernel/
debugfs_create_dir() returns NULL if an error occurs, returns -ENODEV when debugfs is not enabled in the kernel. Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/sh/kernel/setup.c2
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;
554static int __init sh_debugfs_init(void) 554static 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