mmc.h 289 B

12345678910111213141516
  1. #ifndef MMC_H
  2. #define MMC_H
  3. /**************************************************
  4. *
  5. * board specific settings
  6. *
  7. **************************************************/
  8. #ifdef CONFIG_MACH_MACKEREL
  9. #include "mach/mmc-mackerel.h"
  10. #else
  11. #error "unsupported board."
  12. #endif
  13. #endif /* MMC_H */