diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-rx51-video.c')
-rw-r--r-- | arch/arm/mach-omap2/board-rx51-video.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-video.c b/arch/arm/mach-omap2/board-rx51-video.c index 85503fed4e13..acd670054d9a 100644 --- a/arch/arm/mach-omap2/board-rx51-video.c +++ b/arch/arm/mach-omap2/board-rx51-video.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/gpio.h> | 14 | #include <linux/gpio.h> |
15 | #include <linux/spi/spi.h> | 15 | #include <linux/spi/spi.h> |
16 | #include <linux/mm.h> | 16 | #include <linux/mm.h> |
17 | |||
18 | #include <asm/mach-types.h> | 17 | #include <asm/mach-types.h> |
19 | #include <plat/display.h> | 18 | #include <plat/display.h> |
20 | #include <plat/vram.h> | 19 | #include <plat/vram.h> |
@@ -49,8 +48,16 @@ static struct omap_dss_device rx51_lcd_device = { | |||
49 | .platform_disable = rx51_lcd_disable, | 48 | .platform_disable = rx51_lcd_disable, |
50 | }; | 49 | }; |
51 | 50 | ||
51 | static struct omap_dss_device rx51_tv_device = { | ||
52 | .name = "tv", | ||
53 | .type = OMAP_DISPLAY_TYPE_VENC, | ||
54 | .driver_name = "venc", | ||
55 | .phy.venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE, | ||
56 | }; | ||
57 | |||
52 | static struct omap_dss_device *rx51_dss_devices[] = { | 58 | static struct omap_dss_device *rx51_dss_devices[] = { |
53 | &rx51_lcd_device, | 59 | &rx51_lcd_device, |
60 | &rx51_tv_device, | ||
54 | }; | 61 | }; |
55 | 62 | ||
56 | static struct omap_dss_board_info rx51_dss_board_info = { | 63 | static struct omap_dss_board_info rx51_dss_board_info = { |