mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
clk: export mux/divider ops
Export mux/divider ops and divider_recalc_rate for composite usage Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
4b044082c1
commit
1b0d09cddb
1 changed files with 5 additions and 0 deletions
|
@ -96,6 +96,11 @@ struct clk_divider {
|
|||
#define CLK_DIVIDER_ROUND_CLOSEST BIT(4)
|
||||
#define CLK_DIVIDER_READ_ONLY BIT(5)
|
||||
#define CLK_DIVIDER_MAX_AT_ZERO BIT(6)
|
||||
extern const struct clk_ops clk_divider_ops;
|
||||
unsigned long divider_recalc_rate(struct clk *hw, unsigned long parent_rate,
|
||||
unsigned int val,
|
||||
const struct clk_div_table *table,
|
||||
unsigned long flags, unsigned long width);
|
||||
|
||||
struct clk_fixed_factor {
|
||||
struct clk clk;
|
||||
|
|
Loading…
Reference in a new issue