From: Jouni Hogander Date: Tue, 1 Jul 2008 09:37:26 +0000 (+0300) Subject: OMAP: DISPC: Fix to disable also interface clocks. 2nd. X-Git-Tag: v2.6.26-omap1~75 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=af82f9a81aa2a4287a5ed63937fce07b3670b04a;p=linux-2.6-omap-h63xx.git OMAP: DISPC: Fix to disable also interface clocks. 2nd. Leaving interface clocks enabled causes dss pwrdm to stay in active state when mpu is in active state. This fix puts dss to sleep state when it is not needed. Signed-off-by: Jouni Hogander Signed-off-by: Tony Lindgren --- diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c index 6aff476e722..d82588c9aef 100644 --- a/drivers/video/omap/dispc.c +++ b/drivers/video/omap/dispc.c @@ -914,18 +914,13 @@ static void put_dss_clocks(void) static void enable_lcd_clocks(int enable) { - if (enable) + if (enable) { + clk_enable(dispc.dss_ick); clk_enable(dispc.dss1_fck); - else + } else { clk_disable(dispc.dss1_fck); -} - -static void enable_interface_clocks(int enable) -{ - if (enable) - clk_enable(dispc.dss_ick); - else clk_disable(dispc.dss_ick); + } } static void enable_digit_clocks(int enable) @@ -1361,7 +1356,6 @@ static int omap_dispc_init(struct omapfb_device *fbdev, int ext_mode, if ((r = get_dss_clocks()) < 0) return r; - enable_interface_clocks(1); enable_lcd_clocks(1); #ifdef CONFIG_FB_OMAP_BOOTLOADER_INIT @@ -1465,7 +1459,6 @@ fail2: free_irq(INT_24XX_DSS_IRQ, fbdev); fail1: enable_lcd_clocks(0); - enable_interface_clocks(0); put_dss_clocks(); return r; @@ -1482,7 +1475,6 @@ static void omap_dispc_cleanup(void) cleanup_fbmem(); free_palette_ram(); free_irq(INT_24XX_DSS_IRQ, dispc.fbdev); - enable_interface_clocks(0); put_dss_clocks(); }