diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2011-07-07 01:23:48 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-09-20 02:07:09 -0400 |
commit | a46232ee09064351246c6f7134c81790ef737874 (patch) | |
tree | 1653eeec02b9aa4f432690798b7df2c329e5a9d4 | |
parent | 8ea0d4aa606eabd021926b4c328e4d799253afe6 (diff) |
drm/nvd0/disp: push the update button in mode_set_base()
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nvd0_display.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nvd0_display.c b/drivers/gpu/drm/nouveau/nvd0_display.c index 376acc1619a0..4fadea47b3b4 100644 --- a/drivers/gpu/drm/nouveau/nvd0_display.c +++ b/drivers/gpu/drm/nouveau/nvd0_display.c | |||
@@ -192,6 +192,10 @@ nvd0_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb, | |||
192 | evo_data(push, nvfb->r_pitch); | 192 | evo_data(push, nvfb->r_pitch); |
193 | evo_data(push, nvfb->r_format); | 193 | evo_data(push, nvfb->r_format); |
194 | evo_data(push, nvfb->r_dma); | 194 | evo_data(push, nvfb->r_dma); |
195 | if (update) { | ||
196 | evo_mthd(push, 0x0080, 1); | ||
197 | evo_data(push, 0x00000000); | ||
198 | } | ||
195 | evo_kick(push, fb->dev, 0); | 199 | evo_kick(push, fb->dev, 0); |
196 | } | 200 | } |
197 | 201 | ||