aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/clk-provider.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index a1705a0f08c7..677df7865ac8 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -751,17 +751,6 @@ struct clk_hw *clk_hw_register_gpio_mux(struct device *dev, const char *name,
751 unsigned long flags); 751 unsigned long flags);
752void clk_hw_unregister_gpio_mux(struct clk_hw *hw); 752void clk_hw_unregister_gpio_mux(struct clk_hw *hw);
753 753
754/**
755 * clk_register - allocate a new clock, register it and return an opaque cookie
756 * @dev: device that is registering this clock
757 * @hw: link to hardware-specific clock data
758 *
759 * clk_register is the primary interface for populating the clock tree with new
760 * clock nodes. It returns a pointer to the newly allocated struct clk which
761 * cannot be dereferenced by driver code but may be used in conjuction with the
762 * rest of the clock API. In the event of an error clk_register will return an
763 * error code; drivers must test for an error code after calling clk_register.
764 */
765struct clk *clk_register(struct device *dev, struct clk_hw *hw); 754struct clk *clk_register(struct device *dev, struct clk_hw *hw);
766struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw); 755struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw);
767 756