aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/clk-provider.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index d936409520f8..ebb7055a6d84 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -294,6 +294,7 @@ struct clk *clk_register_gate(struct device *dev, const char *name,
294 const char *parent_name, unsigned long flags, 294 const char *parent_name, unsigned long flags,
295 void __iomem *reg, u8 bit_idx, 295 void __iomem *reg, u8 bit_idx,
296 u8 clk_gate_flags, spinlock_t *lock); 296 u8 clk_gate_flags, spinlock_t *lock);
297void clk_unregister_gate(struct clk *clk);
297 298
298struct clk_div_table { 299struct clk_div_table {
299 unsigned int val; 300 unsigned int val;
@@ -361,6 +362,7 @@ struct clk *clk_register_divider_table(struct device *dev, const char *name,
361 void __iomem *reg, u8 shift, u8 width, 362 void __iomem *reg, u8 shift, u8 width,
362 u8 clk_divider_flags, const struct clk_div_table *table, 363 u8 clk_divider_flags, const struct clk_div_table *table,
363 spinlock_t *lock); 364 spinlock_t *lock);
365void clk_unregister_divider(struct clk *clk);
364 366
365/** 367/**
366 * struct clk_mux - multiplexer clock 368 * struct clk_mux - multiplexer clock
@@ -411,6 +413,8 @@ struct clk *clk_register_mux_table(struct device *dev, const char *name,
411 void __iomem *reg, u8 shift, u32 mask, 413 void __iomem *reg, u8 shift, u32 mask,
412 u8 clk_mux_flags, u32 *table, spinlock_t *lock); 414 u8 clk_mux_flags, u32 *table, spinlock_t *lock);
413 415
416void clk_unregister_mux(struct clk *clk);
417
414void of_fixed_factor_clk_setup(struct device_node *node); 418void of_fixed_factor_clk_setup(struct device_node *node);
415 419
416/** 420/**