Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9986b311 authored by Zhaolei's avatar Zhaolei Committed by Paul Mundt
Browse files

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: default avatarZhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent a3e02706
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);