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