2011-03-24 15:04:37 +08:00
|
|
|
#ifndef MMC_H
|
|
|
|
#define MMC_H
|
2011-01-11 11:01:08 +08:00
|
|
|
|
|
|
|
/**************************************************
|
|
|
|
*
|
|
|
|
* board specific settings
|
|
|
|
*
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_MACH_AP4EVB
|
2011-03-24 15:04:37 +08:00
|
|
|
#include "mach/mmc-ap4eb.h"
|
2011-04-04 14:45:21 +08:00
|
|
|
#elif defined(CONFIG_MACH_MACKEREL)
|
2011-03-24 15:04:37 +08:00
|
|
|
#include "mach/mmc-mackerel.h"
|
2011-01-11 11:01:08 +08:00
|
|
|
#else
|
|
|
|
#error "unsupported board."
|
|
|
|
#endif
|
|
|
|
|
2011-03-24 15:04:37 +08:00
|
|
|
#endif /* MMC_H */
|