clk: Add devm_clk_get()

Add a resource managed clk_get() to simplify clock usage in
drivers. This allows driver authors to "get and forget" about
their clocks by automatically calling clk_put() when the driver
is detached. This also encourages clock consumers to use the
clk_get() API correctly by passing in a struct device as an
argument.

Change-Id: I1ed53cd3c26c0390fa30cd3c3dca14bcdd59939f
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Stephen Boyd
2012-03-23 15:21:12 -07:00
parent 3924a3e96e
commit 64990c839b
2 changed files with 35 additions and 0 deletions

View File

@@ -100,6 +100,16 @@ int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb);
*/
struct clk *clk_get(struct device *dev, const char *id);
/**
* devm_clk_get - Resource managed clk_get()
* @dev: device for clk "consumer"
* @id: clk ID.
*
* Managed clk_get(). Clocks returned from this function are
* automatically clk_put() on driver detach.
*/
struct clk *devm_clk_get(struct device *dev, const char *id);
/**
* clk_prepare - prepare a clock source
* @clk: clock source