diff options
author | Francisco Jerez <currojerez@riseup.net> | 2010-10-20 17:35:40 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-12-03 00:11:12 -0500 |
commit | 332b242f47786d1a43bd7a19a0513dd5d493db8e (patch) | |
tree | f6681c1513c58db54f71c64184ebc033a14c49fe /drivers/gpu/drm/nouveau/nv04_crtc.c | |
parent | 042206c0cd4924879c4292c5ffa2bf1e8023ae5a (diff) |
drm/nouveau: Implement the pageflip ioctl.
nv0x-nv4x should be mostly fine, nv50 doesn't work yet.
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv04_crtc.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv04_crtc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nv04_crtc.c b/drivers/gpu/drm/nouveau/nv04_crtc.c index b61a7ff8b7b7..e4aea721971f 100644 --- a/drivers/gpu/drm/nouveau/nv04_crtc.c +++ b/drivers/gpu/drm/nouveau/nv04_crtc.c | |||
@@ -989,6 +989,7 @@ static const struct drm_crtc_funcs nv04_crtc_funcs = { | |||
989 | .cursor_move = nv04_crtc_cursor_move, | 989 | .cursor_move = nv04_crtc_cursor_move, |
990 | .gamma_set = nv_crtc_gamma_set, | 990 | .gamma_set = nv_crtc_gamma_set, |
991 | .set_config = drm_crtc_helper_set_config, | 991 | .set_config = drm_crtc_helper_set_config, |
992 | .page_flip = nouveau_crtc_page_flip, | ||
992 | .destroy = nv_crtc_destroy, | 993 | .destroy = nv_crtc_destroy, |
993 | }; | 994 | }; |
994 | 995 | ||