blob: 470d3c887e14e14f63f6029f668a20273ccf4168 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PCM037_H__
3#define __PCM037_H__
4
5enum pcm037_board_variant {
6 PCM037_PCM970,
7 PCM037_EET,
8};
9
10extern enum pcm037_board_variant pcm037_variant(void);
11
12#ifdef CONFIG_MACH_PCM037_EET
13int pcm037_eet_init_devices(void);
14#else
15static inline int pcm037_eet_init_devices(void) { return 0; }
16#endif
17
18#endif