diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-02-16 09:04:48 (GMT) |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-02-24 20:45:31 (GMT) |
commit | 2503c6fa3edf7c2bb001c7f7926786eed24cc06e (patch) | |
tree | 35e5710bfaf60e9addfcbacf5641593c9f0f8386 /drivers/gpu | |
parent | a589e87fe704808120e6e30f6723b720a085669d (diff) | |
download | linux-fsl-qoriq-2503c6fa3edf7c2bb001c7f7926786eed24cc06e.tar.xz |
drm/nouveau: Fix pageflip event
Assign correct event when initializing nouveau_page_flip_state.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c index c42d84e..764c15d 100644 --- a/drivers/gpu/drm/nouveau/nouveau_display.c +++ b/drivers/gpu/drm/nouveau/nouveau_display.c @@ -290,7 +290,7 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, /* Initialize a page flip struct */ *s = (struct nouveau_page_flip_state) - { { }, s->event, nouveau_crtc(crtc)->index, + { { }, event, nouveau_crtc(crtc)->index, fb->bits_per_pixel, fb->pitch, crtc->x, crtc->y, new_bo->bo.offset }; |