diff options
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_fbcon.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv50_fbcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_fbcon.c b/drivers/gpu/drm/nouveau/nv50_fbcon.c index 1aeb698e9707..af3d3c49411a 100644 --- a/drivers/gpu/drm/nouveau/nv50_fbcon.c +++ b/drivers/gpu/drm/nouveau/nv50_fbcon.c | |||
@@ -125,7 +125,7 @@ nv50_fbcon_imageblit(struct fb_info *info, const struct fb_image *image) | |||
125 | OUT_RING(chan, 0); | 125 | OUT_RING(chan, 0); |
126 | OUT_RING(chan, image->dy); | 126 | OUT_RING(chan, image->dy); |
127 | 127 | ||
128 | dwords = ALIGN(image->width * image->height, 32) >> 5; | 128 | dwords = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5; |
129 | while (dwords) { | 129 | while (dwords) { |
130 | int push = dwords > 2047 ? 2047 : dwords; | 130 | int push = dwords > 2047 ? 2047 : dwords; |
131 | 131 | ||