aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2014-08-07 17:21:53 -0400
committerBen Skeggs <bskeggs@redhat.com>2014-08-09 15:12:53 -0400
commitf4e9ce23757a0115a2187d59e5c13e522a3b2a99 (patch)
tree05f1f8a70448ad1ee65d478addc5855eb15e1f21 /drivers/gpu
parent838f6fe7e470b7cd322b7c3e5ac8c0e09e580194 (diff)
drm/nv50-/sw: use nv50_software_context_dtor....
You would not believe the troubles this caused me... Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/nouveau/core/engine/software/nv50.c2
-rw-r--r--drivers/gpu/drm/nouveau/core/engine/software/nvc0.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/core/engine/software/nv50.c b/drivers/gpu/drm/nouveau/core/engine/software/nv50.c
index f3b4d9dbf23c..c150fff35594 100644
--- a/drivers/gpu/drm/nouveau/core/engine/software/nv50.c
+++ b/drivers/gpu/drm/nouveau/core/engine/software/nv50.c
@@ -198,7 +198,7 @@ nv50_software_cclass = {
198 .base.handle = NV_ENGCTX(SW, 0x50), 198 .base.handle = NV_ENGCTX(SW, 0x50),
199 .base.ofuncs = &(struct nouveau_ofuncs) { 199 .base.ofuncs = &(struct nouveau_ofuncs) {
200 .ctor = nv50_software_context_ctor, 200 .ctor = nv50_software_context_ctor,
201 .dtor = _nouveau_software_context_dtor, 201 .dtor = nv50_software_context_dtor,
202 .init = _nouveau_software_context_init, 202 .init = _nouveau_software_context_init,
203 .fini = _nouveau_software_context_fini, 203 .fini = _nouveau_software_context_fini,
204 }, 204 },
diff --git a/drivers/gpu/drm/nouveau/core/engine/software/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/software/nvc0.c
index 135c20f38356..6be97b00c749 100644
--- a/drivers/gpu/drm/nouveau/core/engine/software/nvc0.c
+++ b/drivers/gpu/drm/nouveau/core/engine/software/nvc0.c
@@ -124,7 +124,7 @@ nvc0_software_cclass = {
124 .base.handle = NV_ENGCTX(SW, 0xc0), 124 .base.handle = NV_ENGCTX(SW, 0xc0),
125 .base.ofuncs = &(struct nouveau_ofuncs) { 125 .base.ofuncs = &(struct nouveau_ofuncs) {
126 .ctor = nv50_software_context_ctor, 126 .ctor = nv50_software_context_ctor,
127 .dtor = _nouveau_software_context_dtor, 127 .dtor = nv50_software_context_dtor,
128 .init = _nouveau_software_context_init, 128 .init = _nouveau_software_context_init,
129 .fini = _nouveau_software_context_fini, 129 .fini = _nouveau_software_context_fini,
130 }, 130 },