#include "radeon_ttm.h"
 
 static int radeon_ttm_debugfs_init(struct radeon_device *rdev);
-static void radeon_ttm_debugfs_fini(struct radeon_device *rdev);
 
 static int radeon_ttm_tt_bind(struct ttm_bo_device *bdev,
                              struct ttm_tt *ttm,
 
        if (!rdev->mman.initialized)
                return;
-       radeon_ttm_debugfs_fini(rdev);
+
        if (rdev->stolen_vga_memory) {
                r = radeon_bo_reserve(rdev->stolen_vga_memory, false);
                if (r == 0) {
        struct drm_minor *minor = rdev->ddev->primary;
        struct dentry *root = minor->debugfs_root;
 
-       rdev->mman.vram = debugfs_create_file("radeon_vram", S_IFREG | S_IRUGO,
-                                             root, rdev,
-                                             &radeon_ttm_vram_fops);
+       debugfs_create_file("radeon_vram", S_IFREG | S_IRUGO, root, rdev,
+                           &radeon_ttm_vram_fops);
 
-       rdev->mman.gtt = debugfs_create_file("radeon_gtt", S_IFREG | S_IRUGO,
-                                            root, rdev, &radeon_ttm_gtt_fops);
+       debugfs_create_file("radeon_gtt", S_IFREG | S_IRUGO, root, rdev,
+                           &radeon_ttm_gtt_fops);
 
        count = ARRAY_SIZE(radeon_ttm_debugfs_list);
 
        return 0;
 #endif
 }
-
-static void radeon_ttm_debugfs_fini(struct radeon_device *rdev)
-{
-#if defined(CONFIG_DEBUG_FS)
-
-       debugfs_remove(rdev->mman.vram);
-       rdev->mman.vram = NULL;
-
-       debugfs_remove(rdev->mman.gtt);
-       rdev->mman.gtt = NULL;
-#endif
-}