repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
x86, efi: Set runtime_version to the EFI spec revision
[linux/fpc-iii.git]
/
arch
/
arm
/
mach-imx
/
pcm037.h
blob
7d167690e17dab2e2e3ff6318010bbaf3198965b
1
#ifndef __PCM037_H__
2
#define __PCM037_H__
3
4
enum
pcm037_board_variant
{
5
PCM037_PCM970
,
6
PCM037_EET
,
7
};
8
9
extern
enum
pcm037_board_variant
pcm037_variant
(
void
);
10
11
#ifdef CONFIG_MACH_PCM037_EET
12
int
pcm037_eet_init_devices
(
void
);
13
#else
14
static
inline
int
pcm037_eet_init_devices
(
void
) {
return
0
; }
15
#endif
16
17
#endif