aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_drm.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2013-02-20 16:13:17 -0500
committerDave Airlie <airlied@redhat.com>2013-02-20 16:13:56 -0500
commite9f211ad7d65b264998928cea822c11c88e5586b (patch)
tree5d24895f6a9bdb7c8438f405867fc1b61b549fd5 /drivers/gpu/drm/nouveau/nouveau_drm.c
parent2e82b5dd47d826baf0f6e34334fe6b899aa6ad1e (diff)
parent33b903e82873ba9233bd89c44d016b87347ed158 (diff)
Merge branch 'drm-nouveau-next' of git://anongit.freedesktop.org/git/nouveau/linux-2.6 into drm-next
restore debugfs vbios, fix multiple actions with supervisor intrs * 'drm-nouveau-next' of git://anongit.freedesktop.org/git/nouveau/linux-2.6: drm/nouveau: restore debugfs/vbios.rom support drm/nv50-/kms: remove UPDATE methods after each encoder disconnect drm/nvd0/disp: handle multiple actions from one set of supervisor intrs drm/nv50/disp: handle multiple actions from one set of supervisor intrs
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drm.c')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
index ccfe2be3ae38..8a03c58ae988 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -50,6 +50,7 @@
50#include "nouveau_abi16.h" 50#include "nouveau_abi16.h"
51#include "nouveau_fbcon.h" 51#include "nouveau_fbcon.h"
52#include "nouveau_fence.h" 52#include "nouveau_fence.h"
53#include "nouveau_debugfs.h"
53 54
54MODULE_PARM_DESC(config, "option string to pass to driver core"); 55MODULE_PARM_DESC(config, "option string to pass to driver core");
55static char *nouveau_config; 56static char *nouveau_config;
@@ -667,6 +668,11 @@ driver = {
667 .postclose = nouveau_drm_postclose, 668 .postclose = nouveau_drm_postclose,
668 .lastclose = nouveau_vga_lastclose, 669 .lastclose = nouveau_vga_lastclose,
669 670
671#if defined(CONFIG_DEBUG_FS)
672 .debugfs_init = nouveau_debugfs_init,
673 .debugfs_cleanup = nouveau_debugfs_takedown,
674#endif
675
670 .irq_preinstall = nouveau_irq_preinstall, 676 .irq_preinstall = nouveau_irq_preinstall,
671 .irq_postinstall = nouveau_irq_postinstall, 677 .irq_postinstall = nouveau_irq_postinstall,
672 .irq_uninstall = nouveau_irq_uninstall, 678 .irq_uninstall = nouveau_irq_uninstall,