ARM: OMAP1: move lcd pdata out of arch/arm/*

omap1 lcd platform data resides inside plat/board.h while it
should be inside include/linux/...
Move the omap1 lcd platform data to include/linux/omapfb.h.

Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Igor Grinberg 2012-08-29 02:18:55 +03:00 committed by Tony Lindgren
parent cc01272986
commit ad6c9101c7
12 changed files with 6 additions and 19 deletions

View file

@ -220,7 +220,12 @@ struct omapfb_display_info {
#ifdef __KERNEL__
#include <plat/board.h>
struct omap_lcd_config {
char panel_name[16];
char ctrl_name[16];
s16 nreset_gpio;
u8 data_lines;
};
struct omapfb_platform_data {
struct omap_lcd_config lcd;