diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/clk-provider.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 5100ec1b5d55..063d8cb9926f 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h | |||
| @@ -682,10 +682,10 @@ struct clk_gpio { | |||
| 682 | 682 | ||
| 683 | extern const struct clk_ops clk_gpio_gate_ops; | 683 | extern const struct clk_ops clk_gpio_gate_ops; |
| 684 | struct clk *clk_register_gpio_gate(struct device *dev, const char *name, | 684 | struct clk *clk_register_gpio_gate(struct device *dev, const char *name, |
| 685 | const char *parent_name, unsigned gpio, bool active_low, | 685 | const char *parent_name, struct gpio_desc *gpiod, |
| 686 | unsigned long flags); | 686 | unsigned long flags); |
| 687 | struct clk_hw *clk_hw_register_gpio_gate(struct device *dev, const char *name, | 687 | struct clk_hw *clk_hw_register_gpio_gate(struct device *dev, const char *name, |
| 688 | const char *parent_name, unsigned gpio, bool active_low, | 688 | const char *parent_name, struct gpio_desc *gpiod, |
| 689 | unsigned long flags); | 689 | unsigned long flags); |
| 690 | void clk_hw_unregister_gpio_gate(struct clk_hw *hw); | 690 | void clk_hw_unregister_gpio_gate(struct clk_hw *hw); |
| 691 | 691 | ||
| @@ -701,11 +701,11 @@ void clk_hw_unregister_gpio_gate(struct clk_hw *hw); | |||
| 701 | 701 | ||
| 702 | extern const struct clk_ops clk_gpio_mux_ops; | 702 | extern const struct clk_ops clk_gpio_mux_ops; |
| 703 | struct clk *clk_register_gpio_mux(struct device *dev, const char *name, | 703 | struct clk *clk_register_gpio_mux(struct device *dev, const char *name, |
| 704 | const char * const *parent_names, u8 num_parents, unsigned gpio, | 704 | const char * const *parent_names, u8 num_parents, struct gpio_desc *gpiod, |
| 705 | bool active_low, unsigned long flags); | 705 | unsigned long flags); |
| 706 | struct clk_hw *clk_hw_register_gpio_mux(struct device *dev, const char *name, | 706 | struct clk_hw *clk_hw_register_gpio_mux(struct device *dev, const char *name, |
| 707 | const char * const *parent_names, u8 num_parents, unsigned gpio, | 707 | const char * const *parent_names, u8 num_parents, struct gpio_desc *gpiod, |
| 708 | bool active_low, unsigned long flags); | 708 | unsigned long flags); |
| 709 | void clk_hw_unregister_gpio_mux(struct clk_hw *hw); | 709 | void clk_hw_unregister_gpio_mux(struct clk_hw *hw); |
| 710 | 710 | ||
| 711 | /** | 711 | /** |
