summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2012-12-12 14:31:10 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2012-12-12 14:31:10 +0100
commit53e54c77daa88dfb22d40f277f932342f5254e36 (patch)
tree4970bb40b41cd559b508567518ba7e28b8c31ad7 /arch
parent2c526da6e49c2b5e8a1385a847decc60f6fb2d40 (diff)
colibri_t20: fix too much tux issue
The boot logo and framebuffer console where displayed with a wrong stride caused by a colour depth mismatch. Fix this by initially configuring the display controllers to 16 bpp.
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-tegra/board-colibri_t20-panel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/board-colibri_t20-panel.c b/arch/arm/mach-tegra/board-colibri_t20-panel.c
index fd58890e1395..6089e0512711 100644
--- a/arch/arm/mach-tegra/board-colibri_t20-panel.c
+++ b/arch/arm/mach-tegra/board-colibri_t20-panel.c
@@ -338,7 +338,7 @@ static struct tegra_fb_data colibri_t20_fb_data = {
.yres = 720,
#endif /* CONFIG_ANDROID */
#endif /* TEGRA_FB_VGA */
- .bits_per_pixel = 32,
+ .bits_per_pixel = 16,
.flags = TEGRA_FB_FLIP_ON_PROBE,
};
@@ -346,7 +346,7 @@ static struct tegra_fb_data colibri_t20_hdmi_fb_data = {
.win = 0,
.xres = 640,
.yres = 480,
- .bits_per_pixel = 32,
+ .bits_per_pixel = 16,
.flags = TEGRA_FB_FLIP_ON_PROBE,
};