diff options
| -rw-r--r-- | drivers/clk/clk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 75d13c0eff12..5558af12f9db 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) | |||
| 394 | { | 394 | { |
| 395 | return clk_core_is_prepared(hw->core); | 395 | return clk_core_is_prepared(hw->core); |
| 396 | } | 396 | } |
| 397 | EXPORT_SYMBOL_GPL(clk_hw_is_prepared); | ||
| 397 | 398 | ||
| 398 | bool clk_hw_rate_is_protected(const struct clk_hw *hw) | 399 | bool clk_hw_rate_is_protected(const struct clk_hw *hw) |
| 399 | { | 400 | { |
| 400 | return clk_core_rate_is_protected(hw->core); | 401 | return clk_core_rate_is_protected(hw->core); |
| 401 | } | 402 | } |
| 403 | EXPORT_SYMBOL_GPL(clk_hw_rate_is_protected); | ||
| 402 | 404 | ||
| 403 | bool clk_hw_is_enabled(const struct clk_hw *hw) | 405 | bool clk_hw_is_enabled(const struct clk_hw *hw) |
| 404 | { | 406 | { |
| 405 | return clk_core_is_enabled(hw->core); | 407 | return clk_core_is_enabled(hw->core); |
| 406 | } | 408 | } |
| 409 | EXPORT_SYMBOL_GPL(clk_hw_is_enabled); | ||
| 407 | 410 | ||
| 408 | bool __clk_is_enabled(struct clk *clk) | 411 | bool __clk_is_enabled(struct clk *clk) |
| 409 | { | 412 | { |
