浏览代码

MIPS: jz4740: remove unnecessary null test before debugfs_remove

Fix checkpatch warning:
WARNING: debugfs_remove(NULL) is safe this check is probably not required

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/7225/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Fabian Frederick 11 年之前
父节点
当前提交
c6b7b9f290
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      arch/mips/jz4740/clock-debugfs.c

+ 1 - 2
arch/mips/jz4740/clock-debugfs.c

@@ -87,8 +87,7 @@ void jz4740_clock_debugfs_add_clk(struct clk *clk)
 /* TODO: Locking */
 /* TODO: Locking */
 void jz4740_clock_debugfs_update_parent(struct clk *clk)
 void jz4740_clock_debugfs_update_parent(struct clk *clk)
 {
 {
-	if (clk->debugfs_parent_entry)
-		debugfs_remove(clk->debugfs_parent_entry);
+	debugfs_remove(clk->debugfs_parent_entry);
 
 
 	if (clk->parent) {
 	if (clk->parent) {
 		char parent_path[100];
 		char parent_path[100];