pcm037.h 308 B

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