aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2015-10-21 19:26:44 -0400
committerStephen Boyd <sboyd@codeaurora.org>2015-10-23 16:34:46 -0400
commitacba7855dda0d6e7d87dec2f89b4d9eebb36bbe2 (patch)
tree612cea941c843e5fc3f99c2e8c1b4ae54a9b7f2d /include/linux
parentf63d19ef52aa66e97fca2425974845177ce02b0a (diff)
clk: Remove clk_{register,unregister}_multiplier()
These APIs aren't used, so remove them. This can be reverted if we get a user at some point. Reviewed-by: Maxime Ripard <maxime.ripard@free-electrons.com> Suggested-by: Michael Turquette <mturquette@baylibre.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/clk-provider.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index e9a4d1ea556e..837cd7c7c8a7 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -554,13 +554,6 @@ struct clk_multiplier {
554 554
555extern const struct clk_ops clk_multiplier_ops; 555extern const struct clk_ops clk_multiplier_ops;
556 556
557struct clk *clk_register_multiplier(struct device *dev, const char *name,
558 const char *parent_name,
559 unsigned long flags,
560 void __iomem *reg, u8 shift, u8 width,
561 u8 clk_mult_flags, spinlock_t *lock);
562void clk_unregister_multiplier(struct clk *clk);
563
564/*** 557/***
565 * struct clk_composite - aggregate clock of mux, divider and gate clocks 558 * struct clk_composite - aggregate clock of mux, divider and gate clocks
566 * 559 *