summaryrefslogtreecommitdiffstats
path: root/include/linux/clk-provider.h
diff options
context:
space:
mode:
authorMasahiro Yamada2016-01-06 05:25:10 +0100
committerStephen Boyd2016-01-30 01:37:24 +0100
commit0b225e41e369a7e03411bb67988513302a10382f (patch)
tree0e13cfed86eed6cdb332fa198363c58934361000 /include/linux/clk-provider.h
parentclk: add clk_unregister_fixed_factor() (diff)
downloadkernel-qcow2-linux-0b225e41e369a7e03411bb67988513302a10382f.tar.gz
kernel-qcow2-linux-0b225e41e369a7e03411bb67988513302a10382f.tar.xz
kernel-qcow2-linux-0b225e41e369a7e03411bb67988513302a10382f.zip
clk: add clk_unregister_fixed_rate()
Allow to unregister fixed rate clock. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r--include/linux/clk-provider.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index 3641eecf462a..fabe5bedbba6 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -285,7 +285,7 @@ struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
struct clk *clk_register_fixed_rate_with_accuracy(struct device *dev,
const char *name, const char *parent_name, unsigned long flags,
unsigned long fixed_rate, unsigned long fixed_accuracy);
-
+void clk_unregister_fixed_rate(struct clk *clk);
void of_fixed_clk_setup(struct device_node *np);
/**