aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris BREZILLON <b.brezillon@overkiz.com>2013-07-18 03:40:25 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-08-30 03:17:35 -0400
commit6e665fb330e2bcf642557c517b517a05b0e0f31b (patch)
tree6898a5cd9fbbda8631b8610b91387cd6adddf9ab
parent05e2190eaeb5b1a8c561cf094f7270261c080ee3 (diff)
at91/avr32/atmel_lcdfb: prepare clk before calling enable
Replace clk_enable/disable with clk_prepare_enable/disable_unprepare to avoid common clk framework warnings. Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r--drivers/video/atmel_lcdfb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c
index effdb373b8db..088511a58a26 100644
--- a/drivers/video/atmel_lcdfb.c
+++ b/drivers/video/atmel_lcdfb.c
@@ -902,14 +902,14 @@ static int __init atmel_lcdfb_init_fbinfo(struct atmel_lcdfb_info *sinfo)
902 902
903static void atmel_lcdfb_start_clock(struct atmel_lcdfb_info *sinfo) 903static void atmel_lcdfb_start_clock(struct atmel_lcdfb_info *sinfo)
904{ 904{
905 clk_enable(sinfo->bus_clk); 905 clk_prepare_enable(sinfo->bus_clk);
906 clk_enable(sinfo->lcdc_clk); 906 clk_prepare_enable(sinfo->lcdc_clk);
907} 907}
908 908
909static void atmel_lcdfb_stop_clock(struct atmel_lcdfb_info *sinfo) 909static void atmel_lcdfb_stop_clock(struct atmel_lcdfb_info *sinfo)
910{ 910{
911 clk_disable(sinfo->bus_clk); 911 clk_disable_unprepare(sinfo->bus_clk);
912 clk_disable(sinfo->lcdc_clk); 912 clk_disable_unprepare(sinfo->lcdc_clk);
913} 913}
914 914
915 915