diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-01 03:13:04 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 09:16:48 -0400 |
commit | 1d7a8654e88885137ade1769c574467775fde27b (patch) | |
tree | 3812a0bf030b8e7ed6214671b1794620b859f8de /arch/arm/mach-omap2/board-am3517evm.c | |
parent | ba2eac9ed32e4485b2a76e1a0922837d3ffd6149 (diff) |
OMAP: use dvi panel driver instead of generic-dpi
Multiple OMAP3/4 boards have a DVI framer output. This patch makes the
boards use the new panel-dvi driver, instead of the panel-generic-dpi
driver.
Separate drivers for fixed size panels and DVI framer gives us cleaner
driver code.
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-am3517evm.c')
-rw-r--r-- | arch/arm/mach-omap2/board-am3517evm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/board-am3517evm.c b/arch/arm/mach-omap2/board-am3517evm.c index f3006c304150..9a68ef5bb0e4 100644 --- a/arch/arm/mach-omap2/board-am3517evm.c +++ b/arch/arm/mach-omap2/board-am3517evm.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <plat/usb.h> | 36 | #include <plat/usb.h> |
37 | #include <video/omapdss.h> | 37 | #include <video/omapdss.h> |
38 | #include <video/omap-panel-generic-dpi.h> | 38 | #include <video/omap-panel-generic-dpi.h> |
39 | #include <video/omap-panel-dvi.h> | ||
39 | 40 | ||
40 | #include "mux.h" | 41 | #include "mux.h" |
41 | #include "control.h" | 42 | #include "control.h" |
@@ -333,8 +334,7 @@ static void am3517_evm_panel_disable_dvi(struct omap_dss_device *dssdev) | |||
333 | dvi_enabled = 0; | 334 | dvi_enabled = 0; |
334 | } | 335 | } |
335 | 336 | ||
336 | static struct panel_generic_dpi_data dvi_panel = { | 337 | static struct panel_dvi_platform_data dvi_panel = { |
337 | .name = "generic", | ||
338 | .platform_enable = am3517_evm_panel_enable_dvi, | 338 | .platform_enable = am3517_evm_panel_enable_dvi, |
339 | .platform_disable = am3517_evm_panel_disable_dvi, | 339 | .platform_disable = am3517_evm_panel_disable_dvi, |
340 | }; | 340 | }; |
@@ -342,7 +342,7 @@ static struct panel_generic_dpi_data dvi_panel = { | |||
342 | static struct omap_dss_device am3517_evm_dvi_device = { | 342 | static struct omap_dss_device am3517_evm_dvi_device = { |
343 | .type = OMAP_DISPLAY_TYPE_DPI, | 343 | .type = OMAP_DISPLAY_TYPE_DPI, |
344 | .name = "dvi", | 344 | .name = "dvi", |
345 | .driver_name = "generic_dpi_panel", | 345 | .driver_name = "dvi", |
346 | .data = &dvi_panel, | 346 | .data = &dvi_panel, |
347 | .phy.dpi.data_lines = 24, | 347 | .phy.dpi.data_lines = 24, |
348 | }; | 348 | }; |