From 53e54c77daa88dfb22d40f277f932342f5254e36 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Wed, 12 Dec 2012 14:31:10 +0100 Subject: 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. --- arch/arm/mach-tegra/board-colibri_t20-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch') 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, }; -- cgit v1.2.3