aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2011-04-13 12:55:36 +1000
committerBen Skeggs <bskeggs@redhat.com>2011-05-16 10:49:26 +1000
commit1d97f4acd31f605452ed042bbd9ff5802e37d477 (patch)
tree24a53f09feaa88a5e1b753232755e7e21c0d7cc0 /drivers/gpu/drm/nouveau
parentdrm/nvc0/fifo: restore context table on resume (diff)
downloadlinux-dev-1d97f4acd31f605452ed042bbd9ff5802e37d477.tar.xz
linux-dev-1d97f4acd31f605452ed042bbd9ff5802e37d477.zip
drm/nvc0/gr: no need to store context in graph_fini()
PFIFO kickoff should have handled this for us. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r--drivers/gpu/drm/nouveau/nvc0_graph.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/nouveau/nvc0_graph.c b/drivers/gpu/drm/nouveau/nvc0_graph.c
index dcb8d9a12120..c4b65fa7aaf1 100644
--- a/drivers/gpu/drm/nouveau/nvc0_graph.c
+++ b/drivers/gpu/drm/nouveau/nvc0_graph.c
@@ -250,12 +250,6 @@ nvc0_graph_object_new(struct nouveau_channel *chan, int engine,
static int
nvc0_graph_fini(struct drm_device *dev, int engine)
{
- u32 inst = nv_rd32(dev, 0x409b00);
- if (inst & 0x80000000) {
- inst &= 0x0fffffff;
- nvc0_graph_unload_context_to(dev, (u64)inst << 12);
- }
-
return 0;
}