diff options
author | John Crispin <blogic@openwrt.org> | 2012-07-22 08:56:01 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2012-08-01 17:58:09 +0200 |
commit | b902d9a98e2bd0d3a2b7ddf7bca850b7f853569a (patch) | |
tree | 284e4b213d67e4ebc18011130b6cb1d29485763f /arch/mips | |
parent | a9188bc1628366bea7157209df93acc0f74625cc (diff) | |
download | blackbird-op-linux-b902d9a98e2bd0d3a2b7ddf7bca850b7f853569a.tar.gz blackbird-op-linux-b902d9a98e2bd0d3a2b7ddf7bca850b7f853569a.zip |
MIPS: Lantiq: Platform specific CLK fixup
As we use CLKDEV_LOOKUP but dont have support for COMMON_CLK yet, we need to
provide our own version of of_clk_get_from_provider().
Signed-off-by: John Crispin <blogic@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/4117/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/lantiq/clk.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/lantiq/clk.c b/arch/mips/lantiq/clk.c index d3bcc33f4699..ce2f129b081f 100644 --- a/arch/mips/lantiq/clk.c +++ b/arch/mips/lantiq/clk.c @@ -135,6 +135,11 @@ void clk_deactivate(struct clk *clk) } EXPORT_SYMBOL(clk_deactivate); +struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec) +{ + return NULL; +} + static inline u32 get_counter_resolution(void) { u32 res; |