watchdog: sp805_wdt.c: use clk_prepare_enable and clk_disable_unprepare
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 26 Aug 2012 16:01:02 +0000 (18:01 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Wed, 19 Dec 2012 21:24:38 +0000 (22:24 +0100)
commit63fbbc169674496fc2ae501d97c3905232a3bf64
treeca8db9986fda8a46f4c467d4438269a15a7e6fa4
parent8157becf8db0c798e1260f3af7c495a9b88e3b57
watchdog: sp805_wdt.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: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/sp805_wdt.c
This page took 0.026124 seconds and 5 git commands to generate.