From: Daniel Vetter Date: Mon, 5 Dec 2016 07:29:26 +0000 (+0100) Subject: drm/qxl: Don't register debugfs for control minors X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=48d9831627c6a059946085ce42d2fd17fb365b8d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git drm/qxl: Don't register debugfs for control minors They're gone since 8a357d10043c ("drm: Nerf DRM_CONTROL nodes"). Spotted while doing a full audit when revieng a similar patch from Nicolai for radeon. v2: Drink coffee first aka don't forget the unregister side. Cc: Dave Airlie Fixes: 8a357d10043c ("drm: Nerf DRM_CONTROL nodes") Cc: Nicolai Stange Acked-by: Dave Airlie Signed-off-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20161205072926.12546-1-daniel.vetter@ffwll.ch --- diff --git a/drivers/gpu/drm/qxl/qxl_debugfs.c b/drivers/gpu/drm/qxl/qxl_debugfs.c index 6911b8c44492..241af9131dc8 100644 --- a/drivers/gpu/drm/qxl/qxl_debugfs.c +++ b/drivers/gpu/drm/qxl/qxl_debugfs.c @@ -122,9 +122,6 @@ int qxl_debugfs_add_files(struct qxl_device *qdev, qdev->debugfs[qdev->debugfs_count].num_files = nfiles; qdev->debugfs_count = i; #if defined(CONFIG_DEBUG_FS) - drm_debugfs_create_files(files, nfiles, - qdev->ddev->control->debugfs_root, - qdev->ddev->control); drm_debugfs_create_files(files, nfiles, qdev->ddev->primary->debugfs_root, qdev->ddev->primary); @@ -138,9 +135,6 @@ void qxl_debugfs_remove_files(struct qxl_device *qdev) unsigned i; for (i = 0; i < qdev->debugfs_count; i++) { - drm_debugfs_remove_files(qdev->debugfs[i].files, - qdev->debugfs[i].num_files, - qdev->ddev->control); drm_debugfs_remove_files(qdev->debugfs[i].files, qdev->debugfs[i].num_files, qdev->ddev->primary);