aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/gma500/framebuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/gma500/framebuffer.c b/drivers/gpu/drm/gma500/framebuffer.c
index 110fcad4c124..b4710dc8d27f 100644
--- a/drivers/gpu/drm/gma500/framebuffer.c
+++ b/drivers/gpu/drm/gma500/framebuffer.c
@@ -391,6 +391,7 @@ static int psbfb_create(struct psb_fbdev *fbdev,
391 mode_cmd.width = sizes->surface_width; 391 mode_cmd.width = sizes->surface_width;
392 mode_cmd.height = sizes->surface_height; 392 mode_cmd.height = sizes->surface_height;
393 bpp = sizes->surface_bpp; 393 bpp = sizes->surface_bpp;
394 depth = sizes->surface_depth;
394 395
395 /* No 24bit packed */ 396 /* No 24bit packed */
396 if (bpp == 24) 397 if (bpp == 24)
@@ -403,7 +404,6 @@ static int psbfb_create(struct psb_fbdev *fbdev,
403 * is ok with some fonts 404 * is ok with some fonts
404 */ 405 */
405 mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 7) / 8), 4096 >> pitch_lines); 406 mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 7) / 8), 4096 >> pitch_lines);
406 depth = sizes->surface_depth;
407 407
408 size = mode_cmd.pitches[0] * mode_cmd.height; 408 size = mode_cmd.pitches[0] * mode_cmd.height;
409 size = ALIGN(size, PAGE_SIZE); 409 size = ALIGN(size, PAGE_SIZE);