You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
351 B
18 lines
351 B
#ifndef MMC_H
|
|
#define MMC_H
|
|
|
|
/**************************************************
|
|
*
|
|
* board specific settings
|
|
*
|
|
**************************************************/
|
|
|
|
#ifdef CONFIG_MACH_AP4EVB
|
|
#include "mach/mmc-ap4eb.h"
|
|
#elif defined(CONFIG_MACH_MACKEREL)
|
|
#include "mach/mmc-mackerel.h"
|
|
#else
|
|
#error "unsupported board."
|
|
#endif
|
|
|
|
#endif /* MMC_H */
|
|
|