root/arch/arm/mach-imx/pcm037.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. pcm037_eet_init_devices

   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
  15 static inline int pcm037_eet_init_devices(void) { return 0; }
  16 #endif
  17 
  18 #endif

/* [<][>][^][v][top][bottom][index][help] */