diff options
author | Archit Taneja <archit@ti.com> | 2012-12-07 13:38:13 +0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-04-04 12:51:16 +0400 |
commit | fe5c5fbad0790f14907679bae29889d47b75456e (patch) | |
tree | 01c4e0444d7f20d2a82f15eb36e5aeaaaf894a49 /arch/arm/mach-omap2/board-3430sdp.c | |
parent | e5e533227ad8b6412cdec371a143ac2944272e2d (diff) | |
download | linux-fe5c5fbad0790f14907679bae29889d47b75456e.tar.xz |
arm: omap boards: Remove unnecessary platform_enable/disable callbacks for VENC devices
The omap_dss_device's platform_enable/disable callbacks don't do anything for
any of the boards. The platform calls from the VENC driver will also be removed
in the future. Remove these calls from the board which have a VENC device.
Signed-off-by: Archit Taneja <archit@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'arch/arm/mach-omap2/board-3430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-3430sdp.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/mach-omap2/board-3430sdp.c b/arch/arm/mach-omap2/board-3430sdp.c index 66cfcca0a707..594c6335496e 100644 --- a/arch/arm/mach-omap2/board-3430sdp.c +++ b/arch/arm/mach-omap2/board-3430sdp.c @@ -126,15 +126,6 @@ static void __init sdp3430_display_init(void) } -static int sdp3430_panel_enable_tv(struct omap_dss_device *dssdev) -{ - return 0; -} - -static void sdp3430_panel_disable_tv(struct omap_dss_device *dssdev) -{ -} - static struct panel_sharp_ls037v7dw01_data sdp3430_lcd_data = { .resb_gpio = SDP3430_LCD_PANEL_ENABLE_GPIO, .ini_gpio = -1, @@ -169,8 +160,6 @@ static struct omap_dss_device sdp3430_tv_device = { .driver_name = "venc", .type = OMAP_DISPLAY_TYPE_VENC, .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO, - .platform_enable = sdp3430_panel_enable_tv, - .platform_disable = sdp3430_panel_disable_tv, }; |