voice_mhi.h 378 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __VOICE_MHI_H__
  6. #define __VOICE_MHI_H__
  7. #ifdef CONFIG_VOICE_MHI
  8. int voice_mhi_start(void);
  9. int voice_mhi_end(void);
  10. #else
  11. static inline int voice_mhi_start(void)
  12. {
  13. return 0;
  14. }
  15. static inline int voice_mhi_end(void)
  16. {
  17. return 0;
  18. }
  19. #endif
  20. #endif