lpass-macro-common.h 416 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2022, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __LPASS_MACRO_COMMON_H__
  6. #define __LPASS_MACRO_COMMON_H__
  7. struct lpass_macro {
  8. struct device *macro_pd;
  9. struct device *dcodec_pd;
  10. };
  11. struct lpass_macro *lpass_macro_pds_init(struct device *dev);
  12. void lpass_macro_pds_exit(struct lpass_macro *pds);
  13. #endif /* __LPASS_MACRO_COMMON_H__ */