]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
mic: no need to check return value of debugfs_create functions
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Jun 2019 18:43:23 +0000 (20:43 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Jun 2019 11:47:24 +0000 (13:47 +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: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: linux-kernel@vger.kernel.org
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Sudeep Dutt <sudeep.dutt@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mic/card/mic_debugfs.c
drivers/misc/mic/cosm/cosm_debugfs.c
drivers/misc/mic/host/mic_debugfs.c
drivers/misc/mic/scif/scif_debugfs.c
drivers/misc/mic/vop/vop_debugfs.c

index 7a4140874888f13c17e724fbb707e05ee80c5a7b..fa2b5fefb791d53c031c958e49ba3e220e17044e 100644 (file)
@@ -63,25 +63,13 @@ DEFINE_SHOW_ATTRIBUTE(mic_intr);
  */
 void __init mic_create_card_debug_dir(struct mic_driver *mdrv)
 {
-       struct dentry *d;
-
        if (!mic_dbg)
                return;
 
        mdrv->dbg_dir = debugfs_create_dir(mdrv->name, mic_dbg);
-       if (!mdrv->dbg_dir) {
-               dev_err(mdrv->dev, "Cant create dbg_dir %s\n", mdrv->name);
-               return;
-       }
-
-       d = debugfs_create_file("intr_test", 0444, mdrv->dbg_dir,
-               mdrv, &mic_intr_fops);
 
-       if (!d) {
-               dev_err(mdrv->dev,
-                       "Cant create dbg intr_test %s\n", mdrv->name);
-               return;
-       }
+       debugfs_create_file("intr_test", 0444, mdrv->dbg_dir, mdrv,
+                           &mic_intr_fops);
 }
 
 /**
@@ -101,8 +89,6 @@ void mic_delete_card_debug_dir(struct mic_driver *mdrv)
 void __init mic_init_card_debugfs(void)
 {
        mic_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
-       if (!mic_dbg)
-               pr_err("can't create debugfs dir\n");
 }
 
 /**
index 71c216d0504d96e24d271120041062bbb604ac73..340ea7171411afbda7aff82aa8e92b6ce3f9e6ae 100644 (file)
@@ -105,8 +105,6 @@ void cosm_create_debug_dir(struct cosm_device *cdev)
 
        scnprintf(name, sizeof(name), "mic%d", cdev->index);
        cdev->dbg_dir = debugfs_create_dir(name, cosm_dbg);
-       if (!cdev->dbg_dir)
-               return;
 
        debugfs_create_file("log_buf", 0444, cdev->dbg_dir, cdev,
                            &log_buf_fops);
@@ -125,8 +123,6 @@ void cosm_delete_debug_dir(struct cosm_device *cdev)
 void cosm_init_debugfs(void)
 {
        cosm_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
-       if (!cosm_dbg)
-               pr_err("can't create debugfs dir\n");
 }
 
 void cosm_exit_debugfs(void)
index c6e3c764699f2ab1b7aeaf2254eb565a5fc0d6fc..370f98c7b752e72321e8a7ac8e61c1a672493a31 100644 (file)
@@ -125,8 +125,6 @@ void mic_create_debug_dir(struct mic_device *mdev)
 
        scnprintf(name, sizeof(name), "mic%d", mdev->id);
        mdev->dbg_dir = debugfs_create_dir(name, mic_dbg);
-       if (!mdev->dbg_dir)
-               return;
 
        debugfs_create_file("smpt", 0444, mdev->dbg_dir, mdev,
                            &mic_smpt_fops);
@@ -155,8 +153,6 @@ void mic_delete_debug_dir(struct mic_device *mdev)
 void __init mic_init_debugfs(void)
 {
        mic_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
-       if (!mic_dbg)
-               pr_err("can't create debugfs dir\n");
 }
 
 /**
index a6820480105a8e3b4635bda80a3588c9d102d20e..8fe38e7ca6e6d389ca3ff3424a11f2ba21e2ff9a 100644 (file)
@@ -103,11 +103,6 @@ DEFINE_SHOW_ATTRIBUTE(scif_rma);
 void __init scif_init_debugfs(void)
 {
        scif_dbg = debugfs_create_dir(KBUILD_MODNAME, NULL);
-       if (!scif_dbg) {
-               dev_err(scif_info.mdev.this_device,
-                       "can't create debugfs dir scif\n");
-               return;
-       }
 
        debugfs_create_file("scif_dev", 0444, scif_dbg, NULL, &scif_dev_fops);
        debugfs_create_file("scif_rma", 0444, scif_dbg, NULL, &scif_rma_fops);
index 2ccef52aca23ff985e8568d534c5a736490cc3ee..d4551d52218824bd313822a0840e2045db7da603 100644 (file)
@@ -186,10 +186,6 @@ void vop_init_debugfs(struct vop_info *vi)
 
        snprintf(name, sizeof(name), "%s%d", KBUILD_MODNAME, vi->vpdev->dnode);
        vi->dbg = debugfs_create_dir(name, NULL);
-       if (!vi->dbg) {
-               pr_err("can't create debugfs dir vop\n");
-               return;
-       }
        debugfs_create_file("dp", 0444, vi->dbg, vi, &vop_dp_fops);
        debugfs_create_file("vdev_info", 0444, vi->dbg, vi, &vop_vdev_info_fops);
 }