mirror of https://gitee.com/openkylin/linux.git
19 lines
342 B
C
19 lines
342 B
C
|
#ifndef MMC_H
|
||
|
#define MMC_H
|
||
|
|
||
|
/**************************************************
|
||
|
*
|
||
|
* board specific settings
|
||
|
*
|
||
|
**************************************************/
|
||
|
|
||
|
#ifdef CONFIG_MACH_AP4EVB
|
||
|
#include "mach/mmc-ap4eb.h"
|
||
|
#elif CONFIG_MACH_MACKEREL
|
||
|
#include "mach/mmc-mackerel.h"
|
||
|
#else
|
||
|
#error "unsupported board."
|
||
|
#endif
|
||
|
|
||
|
#endif /* MMC_H */
|