From 167abe6db371a4c0cbda8425f7013eda628bcf1b Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Tue, 19 Oct 2010 22:10:29 -0700 Subject: [PATCH] [ARM] tegra: stingray: Set fb depth to 16, flip fb at probe Change-Id: Iec30406b433379c1cc06cc70015605e1d43f67d8 Signed-off-by: Colin Cross --- arch/arm/mach-tegra/board-stingray-panel.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-tegra/board-stingray-panel.c b/arch/arm/mach-tegra/board-stingray-panel.c index 29a6dd36eea9..60759a6434ae 100644 --- a/arch/arm/mach-tegra/board-stingray-panel.c +++ b/arch/arm/mach-tegra/board-stingray-panel.c @@ -121,14 +121,16 @@ static struct tegra_fb_data stingray_fb_data_p0 = { .win = 0, .xres = 1280, .yres = 720, - .bits_per_pixel = 32, + .bits_per_pixel = 16, + .flags = TEGRA_FB_FLIP_ON_PROBE, }; static struct tegra_fb_data stingray_fb_data = { .win = 0, .xres = 1280, .yres = 800, - .bits_per_pixel = 32, + .bits_per_pixel = 16, + .flags = TEGRA_FB_FLIP_ON_PROBE, }; static int stingray_panel_enable(void) -- 2.34.1