digital-cdc-rsc-mgr.h 757 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef DIGITAL_CDC_RSC_MGR_H
  6. #define DIGITAL_CDC_RSC_MGR_H
  7. #ifdef CONFIG_DIGITAL_CDC_RSC_MGR
  8. int digital_cdc_rsc_mgr_hw_vote_enable(struct clk* vote_handle);
  9. void digital_cdc_rsc_mgr_hw_vote_disable(struct clk* vote_handle);
  10. void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle);
  11. #else
  12. static inline int digital_cdc_rsc_mgr_hw_vote_enable(struct clk* vote_handle)
  13. {
  14. return 0;
  15. }
  16. static inline void digital_cdc_rsc_mgr_hw_vote_disable(struct clk* vote_handle)
  17. {
  18. }
  19. static inline void digital_cdc_rsc_mgr_hw_vote_reset(struct clk* vote_handle)
  20. {
  21. }
  22. #endif /* CONFIG_DIGITAL_CDC_RSC_MGR */
  23. #endif /* DIGITAL_CDC_RSC_MGR_H */