The forthcoming omap_dss_device to platform_device conversion requires a few new fields to the TFP410 platform data. Add the platform data fields here so that we can make the board file changes independently of the panel driver changes. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@xxxxxx> --- include/video/omap-panel-tfp410.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/video/omap-panel-tfp410.h b/include/video/omap-panel-tfp410.h index aef35e4..cb37c87 100644 --- a/include/video/omap-panel-tfp410.h +++ b/include/video/omap-panel-tfp410.h @@ -24,12 +24,17 @@ struct omap_dss_device; /** * struct tfp410_platform_data - panel driver configuration data + * @name: name for this output + * @source: name for the video source * @i2c_bus_num: i2c bus id for the panel * @power_down_gpio: gpio number for PD pin (or -1 if not available) */ struct tfp410_platform_data { + const char *name; + const char *source; int i2c_bus_num; int power_down_gpio; + int data_lines; }; #endif /* __OMAP_PANEL_TFP410_H */ -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html