aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/mgag200/mgag200_mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mgag200/mgag200_mode.c b/drivers/gpu/drm/mgag200/mgag200_mode.c
index 020a62377ff0..c8983f92bc67 100644
--- a/drivers/gpu/drm/mgag200/mgag200_mode.c
+++ b/drivers/gpu/drm/mgag200/mgag200_mode.c
@@ -877,7 +877,7 @@ static int mga_crtc_mode_set(struct drm_crtc *crtc,
877 877
878 pitch = crtc->fb->pitches[0] / (crtc->fb->bits_per_pixel / 8); 878 pitch = crtc->fb->pitches[0] / (crtc->fb->bits_per_pixel / 8);
879 if (crtc->fb->bits_per_pixel == 24) 879 if (crtc->fb->bits_per_pixel == 24)
880 pitch = pitch >> (4 - bppshift); 880 pitch = (pitch * 3) >> (4 - bppshift);
881 else 881 else
882 pitch = pitch >> (4 - bppshift); 882 pitch = pitch >> (4 - bppshift);
883 883