qtnfmac: no need to check return value of debugfs_create functions
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Jan 2019 15:21:35 +0000 (16:21 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 1 Feb 2019 12:34:13 +0000 (14:34 +0200)
When calling debugfs functions, there is no need to ever check the
return value.  The function can work or not, but the code logic should
never do something different based on this.

Cc: Igor Mitsyanko <imitsyanko@quantenna.com>
Cc: Avinash Patil <avinashp@quantenna.com>
Cc: Sergey Matyukevich <smatyukevich@quantenna.com>
Cc: Kalle Valo <kvalo@codeaurora.org>
Cc: linux-wireless@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Sergey Matyukevich <sergey.matyukevich.os@quantenna.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/quantenna/qtnfmac/debug.c

index ad70cdb..598ece7 100644 (file)
@@ -3,17 +3,9 @@
 
 #include "debug.h"
 
-#undef pr_fmt
-#define pr_fmt(fmt)    "qtnfmac dbg: %s: " fmt, __func__
-
 void qtnf_debugfs_init(struct qtnf_bus *bus, const char *name)
 {
        bus->dbg_dir = debugfs_create_dir(name, NULL);
-
-       if (IS_ERR_OR_NULL(bus->dbg_dir)) {
-               pr_warn("failed to create debugfs root dir\n");
-               bus->dbg_dir = NULL;
-       }
 }
 
 void qtnf_debugfs_remove(struct qtnf_bus *bus)
@@ -25,9 +17,5 @@ void qtnf_debugfs_remove(struct qtnf_bus *bus)
 void qtnf_debugfs_add_entry(struct qtnf_bus *bus, const char *name,
                            int (*fn)(struct seq_file *seq, void *data))
 {
-       struct dentry *entry;
-
-       entry = debugfs_create_devm_seqfile(bus->dev, name, bus->dbg_dir, fn);
-       if (IS_ERR_OR_NULL(entry))
-               pr_warn("failed to add entry (%s)\n", name);
+       debugfs_create_devm_seqfile(bus->dev, name, bus->dbg_dir, fn);
 }