From 6318cfbd9bec0c48e7c59fadc2ebe7d1983c499d Mon Sep 17 00:00:00 2001 From: Eric Bénard Date: Tue, 10 Sep 2013 19:13:34 +0200 Subject: video/stm: enable clock to get the display working MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit else the clock is not enabled : ref_pix (rate 270000000, disabled) lcdif_sel (rate 270000000, disabled) lcdif_div (rate 33750000, disabled) lcdif (rate 33750000, disabled) lcdif_comp (rate 33750000, disabled) tested on i.MX28EVK. Signed-off-by: Eric Bénard Signed-off-by: Sascha Hauer --- drivers/video/stm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/stm.c b/drivers/video/stm.c index 2603129186..fdeaf9c645 100644 --- a/drivers/video/stm.c +++ b/drivers/video/stm.c @@ -496,6 +496,7 @@ static int stmfb_probe(struct device_d *hw_dev) fbi.clk = clk_get(hw_dev, NULL); if (IS_ERR(fbi.clk)) return PTR_ERR(fbi.clk); + clk_enable(fbi.clk); /* add runtime video info */ fbi.info.mode_list = pdata->mode_list; -- cgit v1.2.3