diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-02-07 02:34:55 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-02-07 02:40:27 -0500 |
commit | 1e42754eacdb1c8632c3af47263c56967e04cbd1 (patch) | |
tree | f202d96cbd292edad9b01130ae041a9d71a887ef /include/linux/clk-provider.h | |
parent | 47b0eeb3dc8a01848ad62908000b1051d1833eaf (diff) |
clk: provider: Remove of_gpio_{gate,mux}_clk_setup() prototypes
These functions either never existed or were only used in
OF_CLK_DECLARE() macros. Remove the dead prototypes.
Cc: Jyri Sarha <jsarha@ti.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 9c3a18c1a984..fce7f027f8a7 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
@@ -626,8 +626,6 @@ struct clk *clk_register_gpio_gate(struct device *dev, const char *name, | |||
626 | const char *parent_name, unsigned gpio, bool active_low, | 626 | const char *parent_name, unsigned gpio, bool active_low, |
627 | unsigned long flags); | 627 | unsigned long flags); |
628 | 628 | ||
629 | void of_gpio_clk_gate_setup(struct device_node *node); | ||
630 | |||
631 | /** | 629 | /** |
632 | * struct clk_gpio_mux - gpio controlled clock multiplexer | 630 | * struct clk_gpio_mux - gpio controlled clock multiplexer |
633 | * | 631 | * |
@@ -643,8 +641,6 @@ struct clk *clk_register_gpio_mux(struct device *dev, const char *name, | |||
643 | const char * const *parent_names, u8 num_parents, unsigned gpio, | 641 | const char * const *parent_names, u8 num_parents, unsigned gpio, |
644 | bool active_low, unsigned long flags); | 642 | bool active_low, unsigned long flags); |
645 | 643 | ||
646 | void of_gpio_mux_clk_setup(struct device_node *node); | ||
647 | |||
648 | /** | 644 | /** |
649 | * clk_register - allocate a new clock, register it and return an opaque cookie | 645 | * clk_register - allocate a new clock, register it and return an opaque cookie |
650 | * @dev: device that is registering this clock | 646 | * @dev: device that is registering this clock |