From c4aadbbb23a4ed6cf827706c32600abb7974926f Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Tue, 2 Apr 2013 09:44:03 +0200 Subject: colibri_t20: android: use 32bpp Use 32 rather than 16 bits per pixel as otherwise it looks so ugly. --- arch/arm/mach-tegra/board-colibri_t20-panel.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'arch/arm/mach-tegra') diff --git a/arch/arm/mach-tegra/board-colibri_t20-panel.c b/arch/arm/mach-tegra/board-colibri_t20-panel.c index 6b8fea1dc631..6c6ff73eb318 100644 --- a/arch/arm/mach-tegra/board-colibri_t20-panel.c +++ b/arch/arm/mach-tegra/board-colibri_t20-panel.c @@ -453,7 +453,11 @@ static struct tegra_fb_data colibri_t20_fb_data = { .xres = 800, .yres = 480, #endif /* TEGRA_FB_VGA */ +#ifndef CONFIG_ANDROID .bits_per_pixel = 16, +#else + .bits_per_pixel = 32, +#endif .flags = TEGRA_FB_FLIP_ON_PROBE, }; @@ -461,7 +465,11 @@ static struct tegra_fb_data colibri_t20_hdmi_fb_data = { .win = 0, .xres = 640, .yres = 480, +#ifndef CONFIG_ANDROID .bits_per_pixel = 16, +#else + .bits_per_pixel = 32, +#endif .flags = TEGRA_FB_FLIP_ON_PROBE, }; -- cgit v1.2.3