diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvd0_display.c')
-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 | ||