diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-04-07 21:39:39 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-07-11 17:58:46 -0700 |
commit | 015ba40246497ae02a5f644d4c8adfec76d9b75c (patch) | |
tree | bc14e32c38c79ca9e1b0d822042730aa21aac1d9 /include | |
parent | 766e6a4ec602d0c107553b91b3434fe9c03474f4 (diff) | |
download | linux-015ba40246497ae02a5f644d4c8adfec76d9b75c.tar.gz linux-015ba40246497ae02a5f644d4c8adfec76d9b75c.tar.bz2 linux-015ba40246497ae02a5f644d4c8adfec76d9b75c.zip |
clk: add DT fixed-clock binding support
Add support for DT "fixed-clock" binding to the common fixed rate clock
support.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
[Rob Herring] Rework and move into common clock infrastructure
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/clk-provider.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 7c9c691102b5..77335fac943e 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -172,6 +172,8 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned long fixed_rate); +void of_fixed_clk_setup(struct device_node *np); + /** * struct clk_gate - gating clock * |