Skip to content

Commit

Permalink
Fix debugfs_create_dir's error checking method for arch/sh/kernel/
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Zhaolei authored and Paul Mundt committed Oct 20, 2008
1 parent a3e0270 commit 9986b31
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/sh/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ struct dentry *sh_debugfs_root;
static int __init sh_debugfs_init(void)
{
sh_debugfs_root = debugfs_create_dir("sh", NULL);
if (!sh_debugfs_root)
return -ENOMEM;
if (IS_ERR(sh_debugfs_root))
return PTR_ERR(sh_debugfs_root);

Expand Down

0 comments on commit 9986b31

Please sign in to comment.