Skip to content

Commit

Permalink
OMAP: DSS2: TDO35S: fix video signaling
Browse files Browse the repository at this point in the history
TDO35S samples the data on the falling adge of the pixel clock,
therefore the data strobe should be on the raising edge.

Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Mike Rapoport <mike@compulab.co.il>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
  • Loading branch information
Igor Grinberg authored and Tomi Valkeinen committed Aug 5, 2010
1 parent e8c66dc commit 451cfbf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/video/omap2/displays/panel-toppoly-tdo35s.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ static void toppoly_tdo_panel_power_off(struct omap_dss_device *dssdev)

static int toppoly_tdo_panel_probe(struct omap_dss_device *dssdev)
{
dssdev->panel.config = OMAP_DSS_LCD_TFT | OMAP_DSS_LCD_IVS |
OMAP_DSS_LCD_IHS;
dssdev->panel.config = OMAP_DSS_LCD_TFT |
OMAP_DSS_LCD_IVS |
OMAP_DSS_LCD_IHS |
OMAP_DSS_LCD_IPC |
OMAP_DSS_LCD_ONOFF;

dssdev->panel.timings = toppoly_tdo_panel_timings;

return 0;
Expand Down

0 comments on commit 451cfbf

Please sign in to comment.