mmc.h 483 B

12345678910111213141516171819
  1. #ifndef ASMARM_ARCH_MMC_H
  2. #define ASMARM_ARCH_MMC_H
  3. #include <linux/mmc/protocol.h>
  4. #include <linux/interrupt.h>
  5. struct device;
  6. struct mmc_host;
  7. struct pxamci_platform_data {
  8. unsigned int ocr_mask; /* available voltages */
  9. int (*init)(struct device *, irqreturn_t (*)(int, void *, struct pt_regs *), void *);
  10. void (*setpower)(struct device *, unsigned int);
  11. void (*exit)(struct device *, void *);
  12. };
  13. extern void pxa_set_mci_info(struct pxamci_platform_data *info);
  14. #endif