mmc.h 342 B

123456789101112131415161718
  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 CONFIG_MACH_MACKEREL
  11. #include "mach/mmc-mackerel.h"
  12. #else
  13. #error "unsupported board."
  14. #endif
  15. #endif /* MMC_H */