diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-08-06 17:16:32 +0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-11-12 14:40:21 +0300 |
commit | 3640d9fa7afa02940873d7d4c6c22915320d2a77 (patch) | |
tree | 1d39513d20247d69af4d5522815113fba1ae432e /drivers/video/fbdev/omap2/dss/dpi.c | |
parent | 7b71c410b2417acba49648ceaa6de38b00b05c88 (diff) | |
download | linux-3640d9fa7afa02940873d7d4c6c22915320d2a77.tar.xz |
OMAPDSS: DSI: remove clkin from dsi_clock_info
struct dsi_clock_info contains clkin field, which is the rate of the
PLL's input clock. This field is not needed, as it can be easily
retrieved by using the clk_get_rate().
This patch removes the clkin field.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev/omap2/dss/dpi.c')
-rw-r--r-- | drivers/video/fbdev/omap2/dss/dpi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/fbdev/omap2/dss/dpi.c b/drivers/video/fbdev/omap2/dss/dpi.c index aa095c4927ec..91f18ab72007 100644 --- a/drivers/video/fbdev/omap2/dss/dpi.c +++ b/drivers/video/fbdev/omap2/dss/dpi.c @@ -223,7 +223,6 @@ static bool dpi_dsi_clk_calc(struct dpi_data *dpi, unsigned long pck, ctx->dsidev = dpi->dsidev; ctx->pck_min = pck - 1000; ctx->pck_max = pck + 1000; - ctx->dsi_cinfo.clkin = clkin; pll_min = 0; pll_max = 0; |