Use the new TFP410 platform driver instead of the old omap_dss_driver.

Signed-off-by: Tomi Valkeinen <[email protected]>
---
 arch/arm/mach-omap2/board-overo.c |   20 ++++++++------------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/arch/arm/mach-omap2/board-overo.c 
b/arch/arm/mach-omap2/board-overo.c
index 3253682..9cb29fc 100644
--- a/arch/arm/mach-omap2/board-overo.c
+++ b/arch/arm/mach-omap2/board-overo.c
@@ -148,30 +148,26 @@ static inline void __init overo_init_smsc911x(void) { 
return; }
 #if defined(CONFIG_MACH_OVERO_EXPANSION_SUMMIT)
 
 static struct tfp410_platform_data dvi_panel = {
+       .name                   = "dvi",
+       .source                 = "dpi.0",
+       .data_lines             = 24,
        .i2c_bus_num            = 3,
        .power_down_gpio        = -1,
 };
 
-static struct omap_dss_device overo_dvi_device = {
-       .name                   = "dvi",
-       .type                   = OMAP_DISPLAY_TYPE_DPI,
-       .driver_name            = "tfp410",
-       .data                   = &dvi_panel,
-       .phy.dpi.data_lines     = 24,
-};
-
-static struct omap_dss_device *overo_dss_devices[] = {
-       &overo_dvi_device,
+static struct platform_device overo_dvi_device = {
+       .name                   = "tfp410",
+       .id                     = 0,
+       .dev.platform_data      = &dvi_panel,
 };
 
 static struct omap_dss_board_info overo_dss_data = {
-       .num_devices    = ARRAY_SIZE(overo_dss_devices),
-       .devices        = overo_dss_devices,
        .default_display_name = "dvi",
 };
 
 static void __init overo_display_init(void)
 {
+       platform_device_register(&overo_dvi_device);
 }
 
 #elif defined(CONFIG_MACH_OVERO_EXPANSION_PALO35)
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to