LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] Fix debugfs_create_file's error checking method for arm/mach-ns9xxx
@ 2008-10-17 9:21 Zhaolei
2008-10-17 10:00 ` [PATCH v2] " Zhaolei
0 siblings, 1 reply; 2+ messages in thread
From: Zhaolei @ 2008-10-17 9:21 UTC (permalink / raw)
To: Russell King, linux-kernel
Hi,
debugfs_create_file() 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>
---
arch/arm/mach-ns9xxx/clock.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-ns9xxx/clock.c b/arch/arm/mach-ns9xxx/clock.c
index 44ed20d..15945e9 100644
--- a/arch/arm/mach-ns9xxx/clock.c
+++ b/arch/arm/mach-ns9xxx/clock.c
@@ -208,7 +208,11 @@ static int __init clk_debugfs_init(void)
dentry = debugfs_create_file("clk", S_IFREG | S_IRUGO, NULL, NULL,
&clk_debugfs_operations);
- return IS_ERR(dentry) ? PTR_ERR(dentry) : 0;
+ if (!dentry)
+ return -ENOMEM;
+ if (IS_ERR(dentry))
+ return PTR_ERR(dentry);
+ return 0;
}
subsys_initcall(clk_debugfs_init);
--
1.5.5.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH v2] Fix debugfs_create_file's error checking method for arm/mach-ns9xxx
2008-10-17 9:21 [PATCH] Fix debugfs_create_file's error checking method for arm/mach-ns9xxx Zhaolei
@ 2008-10-17 10:00 ` Zhaolei
0 siblings, 0 replies; 2+ messages in thread
From: Zhaolei @ 2008-10-17 10:00 UTC (permalink / raw)
To: Russell King; +Cc: linux-kernel
debugfs_create_file() returns NULL if an error occurs, returns -ENODEV
when debugfs is not enabled in the kernel.
Comparing to PATCH v1, because clk_debugfs_init is included in
"#if defined CONFIG_DEBUG_FS", we only need to check NULL return.
Thanks Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
---
arch/arm/mach-ns9xxx/clock.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-ns9xxx/clock.c b/arch/arm/mach-ns9xxx/clock.c
index 44ed20d..f2dba83 100644
--- a/arch/arm/mach-ns9xxx/clock.c
+++ b/arch/arm/mach-ns9xxx/clock.c
@@ -208,7 +208,9 @@ static int __init clk_debugfs_init(void)
dentry = debugfs_create_file("clk", S_IFREG | S_IRUGO, NULL, NULL,
&clk_debugfs_operations);
- return IS_ERR(dentry) ? PTR_ERR(dentry) : 0;
+ if (!dentry)
+ return -ENOMEM;
+ return 0;
}
subsys_initcall(clk_debugfs_init);
--
1.5.5.3
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-17 10:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-17 9:21 [PATCH] Fix debugfs_create_file's error checking method for arm/mach-ns9xxx Zhaolei
2008-10-17 10:00 ` [PATCH v2] " Zhaolei
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).