-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: 7534/1: clk: Make the managed clk functions generically available
The managed clk functions are currently only available when the generic clk lookup framework is build. But the managed clk functions are merely wrappers around clk_get and clk_put and do not depend on any specifics of the generic lookup functions and there are still quite a few custom implementations of the clk API. So make the managed functions available whenever the clk API is implemented. The patch also removes the custom implementation of devm_clk_get for the coldfire platform. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Acked-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
- Loading branch information
Lars-Peter Clausen
authored and
Russell King
committed
Sep 15, 2012
1 parent
55d512e
commit 8ef997b
Showing
4 changed files
with
56 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#include <linux/clk.h> | ||
#include <linux/device.h> | ||
#include <linux/export.h> | ||
#include <linux/gfp.h> | ||
|
||
static void devm_clk_release(struct device *dev, void *res) | ||
{ | ||
clk_put(*(struct clk **)res); | ||
} | ||
|
||
struct clk *devm_clk_get(struct device *dev, const char *id) | ||
{ | ||
struct clk **ptr, *clk; | ||
|
||
ptr = devres_alloc(devm_clk_release, sizeof(*ptr), GFP_KERNEL); | ||
if (!ptr) | ||
return ERR_PTR(-ENOMEM); | ||
|
||
clk = clk_get(dev, id); | ||
if (!IS_ERR(clk)) { | ||
*ptr = clk; | ||
devres_add(dev, ptr); | ||
} else { | ||
devres_free(ptr); | ||
} | ||
|
||
return clk; | ||
} | ||
EXPORT_SYMBOL(devm_clk_get); | ||
|
||
static int devm_clk_match(struct device *dev, void *res, void *data) | ||
{ | ||
struct clk **c = res; | ||
if (!c || !*c) { | ||
WARN_ON(!c || !*c); | ||
return 0; | ||
} | ||
return *c == data; | ||
} | ||
|
||
void devm_clk_put(struct device *dev, struct clk *clk) | ||
{ | ||
int ret; | ||
|
||
ret = devres_destroy(dev, devm_clk_release, devm_clk_match, clk); | ||
|
||
WARN_ON(ret); | ||
} | ||
EXPORT_SYMBOL(devm_clk_put); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters