MIPS: jz4740: remove unnecessary null test before debugfs_remove
authorFabian Frederick <fabf@skynet.be>
Sun, 29 Jun 2014 07:24:23 +0000 (09:24 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 1 Aug 2014 22:06:47 +0000 (00:06 +0200)
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>
arch/mips/jz4740/clock-debugfs.c

index a8acdef..325422d 100644 (file)
@@ -87,8 +87,7 @@ void jz4740_clock_debugfs_add_clk(struct clk *clk)
 /* TODO: Locking */
 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) {
                char parent_path[100];