https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 83ac2d5960f6522a7a1f4dcf434dd6e138a88617 authored by Jason Self on 29 January 2016, 05:50:00 UTC
Linux-libre 3.10.96-gnu
Tip revision: 83ac2d5
pcm037.h
#ifndef __PCM037_H__
#define __PCM037_H__

enum pcm037_board_variant {
	PCM037_PCM970,
	PCM037_EET,
};

extern enum pcm037_board_variant pcm037_variant(void);

#ifdef CONFIG_MACH_PCM037_EET
int pcm037_eet_init_devices(void);
#else
static inline int pcm037_eet_init_devices(void) { return 0; }
#endif

#endif
back to top