mmc.h 351 B

12345678910111213141516171819
  1. #ifndef MMC_H
  2. #define MMC_H
  3. /**************************************************
  4. *
  5. * board specific settings
  6. *
  7. **************************************************/
  8. #ifdef CONFIG_MACH_AP4EVB
  9. #include "mach/mmc-ap4eb.h"
  10. #elif defined(CONFIG_MACH_MACKEREL)
  11. #include "mach/mmc-mackerel.h"
  12. #else
  13. #error "unsupported board."
  14. #endif
  15. #endif /* MMC_H */