diff options
author | David Rientjes <rientjes@google.com> | 2013-04-28 21:09:25 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-04-30 00:00:27 (GMT) |
commit | caaa0352c41f0e21b48b902894ae8e585435587d (patch) | |
tree | 68e0a9a453da738beed191d97e5915f979d83776 /drivers/gpu/drm | |
parent | 8e9c40382fb820c3f002928ccc7d9fdbf33ef975 (diff) | |
download | linux-caaa0352c41f0e21b48b902894ae8e585435587d.tar.xz |
drivers, drm: fix qxl build error when debugfs is disabled
Fix build error when CONFIG_DEBUG_FS is disabled:
drivers/gpu/drm/qxl/qxl_debugfs.c: In function 'qxl_debugfs_init':
drivers/gpu/drm/qxl/qxl_debugfs.c:76:2: error: implicit declaration of function 'drm_debugfs_create_files'
drivers/gpu/drm/qxl/qxl_debugfs.c: In function 'qxl_debugfs_takedown':
drivers/gpu/drm/qxl/qxl_debugfs.c:84:2: error: implicit declaration of function 'drm_debugfs_remove_files'
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/qxl/qxl_debugfs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/qxl/qxl_debugfs.c b/drivers/gpu/drm/qxl/qxl_debugfs.c index c630152..c3c2bbd 100644 --- a/drivers/gpu/drm/qxl/qxl_debugfs.c +++ b/drivers/gpu/drm/qxl/qxl_debugfs.c @@ -35,6 +35,7 @@ #include "qxl_object.h" +#if defined(CONFIG_DEBUG_FS) static int qxl_debugfs_irq_received(struct seq_file *m, void *data) { @@ -69,20 +70,25 @@ static struct drm_info_list qxl_debugfs_list[] = { { "qxl_buffers", qxl_debugfs_buffers_info, 0, NULL }, }; #define QXL_DEBUGFS_ENTRIES ARRAY_SIZE(qxl_debugfs_list) +#endif int qxl_debugfs_init(struct drm_minor *minor) { +#if defined(CONFIG_DEBUG_FS) drm_debugfs_create_files(qxl_debugfs_list, QXL_DEBUGFS_ENTRIES, minor->debugfs_root, minor); +#endif return 0; } void qxl_debugfs_takedown(struct drm_minor *minor) { +#if defined(CONFIG_DEBUG_FS) drm_debugfs_remove_files(qxl_debugfs_list, QXL_DEBUGFS_ENTRIES, minor); +#endif } int qxl_debugfs_add_files(struct qxl_device *qdev, |