aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_drv.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-07-08 01:28:48 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-07-12 20:13:49 -0400
commitac94a343c74fe0504663583a7590e89257214f0d (patch)
treee1b73c2099e8d4f8b1f6c66956de72a4a9bddd85 /drivers/gpu/drm/nouveau/nouveau_drv.h
parent3b569e0f2b8f48cd7f9ea37ef7597d1219b87477 (diff)
drm/nv50: cleanup nv50_fifo.c
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drv.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index df55a115d401..f3dbce20332b 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
@@ -294,10 +294,11 @@ struct nouveau_fb_engine {
294}; 294};
295 295
296struct nouveau_fifo_engine { 296struct nouveau_fifo_engine {
297 void *priv;
298
299 int channels; 297 int channels;
300 298
299 struct nouveau_gpuobj_ref *playlist[2];
300 int cur_playlist;
301
301 int (*init)(struct drm_device *); 302 int (*init)(struct drm_device *);
302 void (*takedown)(struct drm_device *); 303 void (*takedown)(struct drm_device *);
303 304