aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_stub.c
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-01-29 13:01:08 +0100
committerDavid Herrmann <dh.herrmann@gmail.com>2014-03-16 12:25:18 +0100
commitcb0f93238b89c6178842ba89ecc1cd311f1a3e75 (patch)
tree3263b19b8f69b4f0662662a4aee5de1ff27d3cd1 /drivers/gpu/drm/drm_stub.c
parentdrm: rename drm_unplug/get_minor() to drm_minor_register/unregister() (diff)
downloadlinux-dev-cb0f93238b89c6178842ba89ecc1cd311f1a3e75.tar.xz
linux-dev-cb0f93238b89c6178842ba89ecc1cd311f1a3e75.zip
drm: remove unneeded #ifdef CONFIG_DEBUGFS
No need to check for DEBUGFS, we already have dummy-fallbacks in our headers. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_stub.c')
-rw-r--r--drivers/gpu/drm/drm_stub.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/drm_stub.c b/drivers/gpu/drm/drm_stub.c
index 488600013e35..fe9595b750ea 100644
--- a/drivers/gpu/drm/drm_stub.c
+++ b/drivers/gpu/drm/drm_stub.c
@@ -323,13 +323,11 @@ static int drm_minor_register(struct drm_device *dev, unsigned int type)
idr_replace(&drm_minors_idr, new_minor, minor_id);
-#if defined(CONFIG_DEBUG_FS)
ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
if (ret) {
DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
goto err_mem;
}
-#endif
ret = drm_sysfs_device_add(new_minor);
if (ret) {
@@ -343,10 +341,8 @@ static int drm_minor_register(struct drm_device *dev, unsigned int type)
err_debugfs:
-#if defined(CONFIG_DEBUG_FS)
drm_debugfs_cleanup(new_minor);
err_mem:
-#endif
idr_remove(&drm_minors_idr, minor_id);
return ret;
}
@@ -359,10 +355,7 @@ static void drm_minor_unregister(struct drm_device *dev, unsigned int type)
if (!minor || !minor->kdev)
return;
-#if defined(CONFIG_DEBUG_FS)
drm_debugfs_cleanup(minor);
-#endif
-
drm_sysfs_device_remove(minor);
idr_remove(&drm_minors_idr, minor->index);
}