]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-imx/pcm037.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-imx / pcm037.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
574ec547
GL
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
8321b758
SG
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
574ec547 18#endif