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.
19 lines
342 B
19 lines
342 B
14 years ago
|
#ifndef MMC_H
|
||
|
#define MMC_H
|
||
14 years ago
|
|
||
|
/**************************************************
|
||
|
*
|
||
|
* board specific settings
|
||
|
*
|
||
|
**************************************************/
|
||
|
|
||
|
#ifdef CONFIG_MACH_AP4EVB
|
||
14 years ago
|
#include "mach/mmc-ap4eb.h"
|
||
14 years ago
|
#elif CONFIG_MACH_MACKEREL
|
||
14 years ago
|
#include "mach/mmc-mackerel.h"
|
||
14 years ago
|
#else
|
||
|
#error "unsupported board."
|
||
|
#endif
|
||
|
|
||
14 years ago
|
#endif /* MMC_H */
|