OSDN Git Service
(root)
/
android-x86
/
kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d391aa
)
drm/i915: Fix fbcon setup to align display pitch to 64b.
author
Eric Anholt
<eric@anholt.net>
Thu, 11 Dec 2008 01:23:00 +0000
(17:23 -0800)
committer
Dave Airlie
<airlied@linux.ie>
Mon, 29 Dec 2008 07:47:25 +0000
(17:47 +1000)
This is required by the display plane, and fixes 1400x1050 laptop displays.
Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/i915/intel_fb.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_fb.c
b/drivers/gpu/drm/i915/intel_fb.c
index
a89ebea
..
bbf3e7f
100644
(file)
--- a/
drivers/gpu/drm/i915/intel_fb.c
+++ b/
drivers/gpu/drm/i915/intel_fb.c
@@
-447,7
+447,7
@@
int intelfb_create(struct drm_device *dev, uint32_t fb_width,
mode_cmd.height = surface_height;
mode_cmd.bpp = 32;
- mode_cmd.pitch =
mode_cmd.width * ((mode_cmd.bpp + 1) / 8
);
+ mode_cmd.pitch =
ALIGN(mode_cmd.width * ((mode_cmd.bpp + 1) / 8), 64
);
mode_cmd.depth = 24;
size = mode_cmd.pitch * mode_cmd.height;