]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ACPI: custom_method: remove meaningless null check before debugfs_remove()
authorzhong jiang <zhongjiang@huawei.com>
Sat, 18 Aug 2018 10:49:20 +0000 (18:49 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 10 Sep 2018 10:46:51 +0000 (12:46 +0200)
debugfs_remove() has taken null pointer into account. So it is safe
to remove the check before debugfs_remove().

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/custom_method.c

index e967c1173ba3280ac1cb5b11c9785a785619b320..4451877f83b63932149b0fd4e552129b2b790c18 100644 (file)
@@ -92,8 +92,7 @@ static int __init acpi_custom_method_init(void)
 
 static void __exit acpi_custom_method_exit(void)
 {
-       if (cm_dentry)
-               debugfs_remove(cm_dentry);
+       debugfs_remove(cm_dentry);
 }
 
 module_init(acpi_custom_method_init);