Julia Lawall 828296debf drivers/rtc/rtc-coh901331.c: use clk_prepare_enable() and clk_disable_unprepare()
clk_prepare_enable and clk_disable_unprepare combine clk_prepare and
clk_enable, and clk_disable and clk_unprepare.  They make the code more
concise, and ensure that clk_unprepare is called when clk_enable fails.

A simplified version of the semantic patch that introduces calls to these
functions is as follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression e;
@@

- clk_prepare(e);
- clk_enable(e);
+ clk_prepare_enable(e);

@@
expression e;
@@

- clk_disable(e);
- clk_unprepare(e);
+ clk_disable_unprepare(e);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-10-06 03:05:04 +09:00
..
2012-10-02 19:01:32 -07:00
2012-10-02 17:26:42 -07:00
2012-10-01 19:11:38 -07:00
2012-09-22 10:29:19 +01:00
2012-09-24 10:07:40 -07:00
2012-10-03 09:44:08 -07:00
2012-10-02 22:09:10 -07:00
2012-10-01 19:11:38 -07:00
2012-10-02 19:01:32 -07:00
2012-10-01 19:11:38 -07:00
2012-10-03 09:44:08 -07:00
2012-10-02 22:09:10 -07:00
2012-10-01 12:09:59 -07:00
2012-10-01 18:19:05 -07:00
2012-10-02 22:09:10 -07:00
2012-10-01 18:46:13 -07:00