dtpm_subsys.h 442 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2022 Linaro Ltd
  4. *
  5. * Author: Daniel Lezcano <[email protected]>
  6. */
  7. #ifndef ___DTPM_SUBSYS_H__
  8. #define ___DTPM_SUBSYS_H__
  9. extern struct dtpm_subsys_ops dtpm_cpu_ops;
  10. extern struct dtpm_subsys_ops dtpm_devfreq_ops;
  11. struct dtpm_subsys_ops *dtpm_subsys[] = {
  12. #ifdef CONFIG_DTPM_CPU
  13. &dtpm_cpu_ops,
  14. #endif
  15. #ifdef CONFIG_DTPM_DEVFREQ
  16. &dtpm_devfreq_ops,
  17. #endif
  18. };
  19. #endif