From: Colin Cross Date: Wed, 20 Oct 2010 05:10:29 +0000 (-0700) Subject: [ARM] tegra: stingray: Set fb depth to 16, flip fb at probe X-Git-Tag: firefly_0821_release~9834^2~421 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=167abe6db371a4c0cbda8425f7013eda628bcf1b;p=firefly-linux-kernel-4.4.55.git [ARM] tegra: stingray: Set fb depth to 16, flip fb at probe Change-Id: Iec30406b433379c1cc06cc70015605e1d43f67d8 Signed-off-by: Colin Cross --- 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)