linux/arch/arm/mach-imx/pcm037.h
<<
>>
Prefs
   1/* 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
  19