From: Thierry Reding Date: Fri, 25 Apr 2014 14:48:36 +0000 (+0200) Subject: drm/tegra: sor - Recursively remove debugfs tree X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9578184efa6b93f71f34744351a6a8caa79d6cda;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git 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 --- 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;