aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-05-21 15:59:46 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-05-21 15:59:46 -0700
commit4f6ade91532b5b05ea28219b891f12a3cec528cd (patch)
tree8a684205449b2db0798fc22c9f03c40afa9cc849 /Documentation
parentFix blocking allocations called very early during bootup (diff)
parentCLKDEV: provide helpers for common clock framework (diff)
downloadlinux-dev-4f6ade91532b5b05ea28219b891f12a3cec528cd.tar.xz
linux-dev-4f6ade91532b5b05ea28219b891f12a3cec528cd.zip
Merge branch 'clkdev' of git://git.linaro.org/people/rmk/linux-arm
Pull clkdev updates from Russell King: "This supplements clkdev with a device-managed API, allowing drivers cleanup paths to be simplified. We also optimize clk_find() so that it exits as soon as it finds a perfect match, and we provide a way to minimise the amount of code platforms need to register clkdev entries. Some of the code in arm-soc depends on these changes." * 'clkdev' of git://git.linaro.org/people/rmk/linux-arm: CLKDEV: provide helpers for common clock framework ARM: 7392/1: CLKDEV: Optimize clk_find() ARM: 7376/1: clkdev: Implement managed clk_get()
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/driver-model/devres.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/driver-model/devres.txt b/Documentation/driver-model/devres.txt
index 2a596a4fc23e..9faac6ae3525 100644
--- a/Documentation/driver-model/devres.txt
+++ b/Documentation/driver-model/devres.txt
@@ -276,3 +276,7 @@ REGULATOR
devm_regulator_get()
devm_regulator_put()
devm_regulator_bulk_get()
+
+CLOCK
+ devm_clk_get()
+ devm_clk_put()