diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-08-06 15:45:26 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-11-12 13:40:21 +0200 |
commit | 7b71c410b2417acba49648ceaa6de38b00b05c88 (patch) | |
tree | 4d30568ae930c4f7f5fc7a6c850a0171619ea67b /drivers/video/fbdev/omap2/dss/dss.h | |
parent | 1a7f4bf186e6e629d8cb3226be4b9fbb48c812b8 (diff) | |
download | linux-7b71c410b2417acba49648ceaa6de38b00b05c88.tar.bz2 |
OMAPDSS: DSI: separate LP clock info from dsi_clock_info
struct dsi_clock_info represents the clocks handled by the DSI, mostly
PLL related clocks. In an effort to create common PLL code, we need to
remove all the non-PLL items from dsi_clock_info.
This patch removes LP clock related fields from dsi_clock_info, and
creates a new struct dsi_lp_clock_info for holding clock info for the LP
clock.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev/omap2/dss/dss.h')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dss.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dss.h b/drivers/video/fbdev/omap2/dss/dss.h index 2defcaedbef5..712592d2e5f7 100644 --- a/drivers/video/fbdev/omap2/dss/dss.h +++ b/drivers/video/fbdev/omap2/dss/dss.h @@ -119,7 +119,6 @@ struct dsi_clock_info { * OMAP4: PLLx_CLK1 */ unsigned long dsi_pll_hsdiv_dsi_clk; /* OMAP3: DSI2_PLL_CLK * OMAP4: PLLx_CLK2 */ - unsigned long lp_clk; /* dividers */ u16 regn; @@ -128,7 +127,6 @@ struct dsi_clock_info { * OMAP4: REGM4 */ u16 regm_dsi; /* OMAP3: REGM4 * OMAP4: REGM5 */ - u16 lp_clk_div; }; struct dss_lcd_mgr_config { |