blob: f4dc3279cf0357b15eb3967852d526e6a03ac1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef MMCIF_H
#define MMCIF_H
/**************************************************
*
* board specific settings
*
**************************************************/
#ifdef CONFIG_MACH_AP4EVB
#include "mach/mmcif-ap4eb.h"
#elif CONFIG_MACH_MACKEREL
#include "mach/mmcif-mackerel.h"
#else
#error "unsupported board."
#endif
#endif /* MMCIF_H */
|