If debugfs is not enabled then debugfs_create_dir() returns
ERR_PTR(-ENODEV).  Also my static checker complains that we are trying
to print the error code, but it's is always just NULL.

Signed-off-by: Dan Carpenter <[email protected]>

diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c
index 18dcb58..4416d92 100644
--- a/drivers/platform/x86/intel_ips.c
+++ b/drivers/platform/x86/intel_ips.c
@@ -1328,7 +1328,7 @@ static void ips_debugfs_init(struct ips_driver *ips)
        int i;
 
        ips->debug_root = debugfs_create_dir("ips", NULL);
-       if (!ips->debug_root) {
+       if (IS_ERR_OR_NULL(ips->debug_root)) {
                dev_err(&ips->dev->dev,
                        "failed to create debugfs entries: %ld\n",
                        PTR_ERR(ips->debug_root));
@@ -1343,7 +1343,7 @@ static void ips_debugfs_init(struct ips_driver *ips)
                ent = debugfs_create_file(node->name, S_IFREG | S_IRUGO,
                                          ips->debug_root, node,
                                          &ips_debugfs_ops);
-               if (!ent) {
+               if (IS_ERR_OR_NULL(ent)) {
                        dev_err(&ips->dev->dev,
                                "failed to create debug file: %ld\n",
                                PTR_ERR(ent));
--
To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" 
in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to