summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2021-02-09 14:15:53 +0100
committerChristian König <christian.koenig@amd.com>2021-02-09 16:34:43 +0100
commit8a945edd183d296cd1125a2724fb0f3c77d8e9b3 (patch)
treee15b352dcd22a78dbbe5f317a1bf196c53a2d3bd
parent48e2b69683e26b703c768bc34926edfeaa16cbb3 (diff)
drm/ttm: fix removal of bo_count sysfs file
Only a zombie leftover from rebasing. Signed-off-by: Christian König <christian.koenig@amd.com> Fixes: 3763d635deaa ("drm/ttm: add debugfs directory v2") Reported-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20210209131756.24650-1-christian.koenig@amd.com
-rw-r--r--drivers/gpu/drm/ttm/ttm_device.c2
-rw-r--r--include/drm/ttm/ttm_device.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c
index ac0903c9e60a..8bb61dd26437 100644
--- a/drivers/gpu/drm/ttm/ttm_device.c
+++ b/drivers/gpu/drm/ttm/ttm_device.c
@@ -49,8 +49,6 @@ static void ttm_global_release(void)
if (--ttm_glob_use_count > 0)
goto out;
- kobject_del(&glob->kobj);
- kobject_put(&glob->kobj);
ttm_mem_global_release(&ttm_mem_glob);
__free_page(glob->dummy_read_page);
memset(glob, 0, sizeof(*glob));
diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h
index 7bc8bb797161..035bbc044a3b 100644
--- a/include/drm/ttm/ttm_device.h
+++ b/include/drm/ttm/ttm_device.h
@@ -55,7 +55,6 @@ extern struct ttm_global {
* Constant after init.
*/
- struct kobject kobj;
struct page *dummy_read_page;
spinlock_t lru_lock;