OSDN Git Service

qca: no need to check return value of debugfs_create functions
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 10 Aug 2019 10:17:26 +0000 (12:17 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 10 Aug 2019 22:25:48 +0000 (15:25 -0700)
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: "David S. Miller" <davem@davemloft.net>
Cc: Stefan Wahren <stefan.wahren@i2se.com>
Cc: Michael Heimpold <michael.heimpold@i2se.com>
Cc: Yangtao Li <tiny.windzz@gmail.com>
Cc: netdev@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/qca_debug.c

index bcb890b..702aa21 100644 (file)
@@ -131,17 +131,10 @@ DEFINE_SHOW_ATTRIBUTE(qcaspi_info);
 void
 qcaspi_init_device_debugfs(struct qcaspi *qca)
 {
-       struct dentry *device_root;
+       qca->device_root = debugfs_create_dir(dev_name(&qca->net_dev->dev),
+                                             NULL);
 
-       device_root = debugfs_create_dir(dev_name(&qca->net_dev->dev), NULL);
-       qca->device_root = device_root;
-
-       if (IS_ERR(device_root) || !device_root) {
-               pr_warn("failed to create debugfs directory for %s\n",
-                       dev_name(&qca->net_dev->dev));
-               return;
-       }
-       debugfs_create_file("info", S_IFREG | 0444, device_root, qca,
+       debugfs_create_file("info", S_IFREG | 0444, qca->device_root, qca,
                            &qcaspi_info_fops);
 }