aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDing Xiang <[email protected]>2019-09-24 10:58:54 +0800
committerBjorn Andersson <[email protected]>2019-10-04 21:11:57 -0700
commit0ad82e3a2234dfa38ec835d1772e8c9af176d458 (patch)
treec581abbb351ca6d439f110312b0256ef893b4fe1
parent006d72da28db06a0762b1f536458ac1a9a4ba8d1 (diff)
remoteproc: debug: Remove unneeded NULL check
debugfs_remove_recursive will do NULL check, so remove the redundant null check Signed-off-by: Ding Xiang <[email protected]> Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r--drivers/remoteproc/remoteproc_debugfs.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/remoteproc/remoteproc_debugfs.c b/drivers/remoteproc/remoteproc_debugfs.c
index 8cd4a0a3892b..dd93cf04e17f 100644
--- a/drivers/remoteproc/remoteproc_debugfs.c
+++ b/drivers/remoteproc/remoteproc_debugfs.c
@@ -333,9 +333,6 @@ struct dentry *rproc_create_trace_file(const char *name, struct rproc *rproc,
void rproc_delete_debug_dir(struct rproc *rproc)
{
- if (!rproc->dbg_dir)
- return;
-
debugfs_remove_recursive(rproc->dbg_dir);
}