|
@@ -81,10 +81,17 @@ static int max77686_clk_is_prepared(struct clk_hw *hw)
|
|
|
return val & max77686->mask;
|
|
|
}
|
|
|
|
|
|
+static unsigned long max77686_recalc_rate(struct clk_hw *hw,
|
|
|
+ unsigned long parent_rate)
|
|
|
+{
|
|
|
+ return 32768;
|
|
|
+}
|
|
|
+
|
|
|
static struct clk_ops max77686_clk_ops = {
|
|
|
.prepare = max77686_clk_prepare,
|
|
|
.unprepare = max77686_clk_unprepare,
|
|
|
.is_prepared = max77686_clk_is_prepared,
|
|
|
+ .recalc_rate = max77686_recalc_rate,
|
|
|
};
|
|
|
|
|
|
static struct clk_init_data max77686_clks_init[MAX77686_CLKS_NUM] = {
|