pcm037.h 347 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __PCM037_H__
  3. #define __PCM037_H__
  4. enum pcm037_board_variant {
  5. PCM037_PCM970,
  6. PCM037_EET,
  7. };
  8. extern enum pcm037_board_variant pcm037_variant(void);
  9. #ifdef CONFIG_MACH_PCM037_EET
  10. int pcm037_eet_init_devices(void);
  11. #else
  12. static inline int pcm037_eet_init_devices(void) { return 0; }
  13. #endif
  14. #endif