Skip to content

Commit

Permalink
OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX
Browse files Browse the repository at this point in the history
  • Loading branch information
sakoman committed Mar 15, 2011
1 parent 4c19d2e commit 4a99092
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion drivers/video/omap2/dss/dpi.c
Expand Up @@ -181,7 +181,12 @@ int omapdss_dpi_display_enable(struct omap_dss_device *dssdev)

#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
dss_clk_enable(DSS_CLK_FCK2);
r = dsi_pll_init(dssdev, 0, 1);

if (cpu_is_omap3630())
r = dsi_pll_init(dssdev, 1, 1);
else
r = dsi_pll_init(dssdev, 0, 1);

if (r)
goto err3;
#endif
Expand Down

0 comments on commit 4a99092

Please sign in to comment.