summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/sor.c
diff options
context:
space:
mode:
authorThierry Reding2014-04-25 16:48:36 +0200
committerThierry Reding2014-06-06 08:38:30 +0200
commit9578184efa6b93f71f34744351a6a8caa79d6cda (patch)
treec476ef229c27ba0881beccf1af1dadc39bd75482 /drivers/gpu/drm/tegra/sor.c
parentdrm/tegra: dp - Mark the connector as hotplug capable (diff)
downloadkernel-qcow2-linux-9578184efa6b93f71f34744351a6a8caa79d6cda.tar.gz
kernel-qcow2-linux-9578184efa6b93f71f34744351a6a8caa79d6cda.tar.xz
kernel-qcow2-linux-9578184efa6b93f71f34744351a6a8caa79d6cda.zip
drm/tegra: sor - Recursively remove debugfs tree
Removing only the root directory will fail when there are still files in it. Instead of manually removing all files, remove the whole directory recursively. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/sor.c')
-rw-r--r--drivers/gpu/drm/tegra/sor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/sor.c b/drivers/gpu/drm/tegra/sor.c
index 5c67d97bd21d..06f800917738 100644
--- a/drivers/gpu/drm/tegra/sor.c
+++ b/drivers/gpu/drm/tegra/sor.c
@@ -1036,7 +1036,7 @@ remove:
static int tegra_sor_debugfs_exit(struct tegra_sor *sor)
{
- debugfs_remove(sor->debugfs);
+ debugfs_remove_recursive(sor->debugfs);
sor->debugfs = NULL;
return 0;