Commit 7425f410 authored by Selvin Xavier's avatar Selvin Xavier Committed by Doug Ledford

RDMA/ocrdma: Fixing ocrdma debugfs directory remove

During the ocrdma device remove sequence, the debugfs directory
tree of each ocrdma device needs to be removed. Use
debugfs_remove_recursive instead of debugfs_remove.
Signed-off-by: default avatarSelvin Xavier <selvin.xavier@broadcom.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent aff3ead9
...@@ -851,7 +851,7 @@ void ocrdma_rem_port_stats(struct ocrdma_dev *dev) ...@@ -851,7 +851,7 @@ void ocrdma_rem_port_stats(struct ocrdma_dev *dev)
{ {
if (!dev->dir) if (!dev->dir)
return; return;
debugfs_remove(dev->dir); debugfs_remove_recursive(dev->dir);
} }
void ocrdma_init_debugfs(void) void ocrdma_init_debugfs(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment