Message ID | 20190201125841.26785-2-jbrunet@baylibre.com (mailing list archive) |
---|---|
State | Mainlined, archived |
Commit | 12aa377bf80cb3a38053dba70eaa7e39975849b2 |
Headers | show |
Series | clk: meson: rework drivers dependencies | expand |
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 6ccdbedb02f3..6d86dbb72602 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -394,16 +394,19 @@ bool clk_hw_is_prepared(const struct clk_hw *hw) { return clk_core_is_prepared(hw->core); } +EXPORT_SYMBOL_GPL(clk_hw_is_prepared); bool clk_hw_rate_is_protected(const struct clk_hw *hw) { return clk_core_rate_is_protected(hw->core); } +EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected); bool clk_hw_is_enabled(const struct clk_hw *hw) { return clk_core_is_enabled(hw->core); } +EXPORT_SYMBOL_GPL(clk_hw_is_enabled); bool __clk_is_enabled(struct clk *clk) {