mmci.h 350 B

123456789101112131415161718
  1. /*
  2. * include/linux/amba/mmci.h
  3. */
  4. #ifndef AMBA_MMCI_H
  5. #define AMBA_MMCI_H
  6. #include <linux/mmc/host.h>
  7. struct mmci_platform_data {
  8. unsigned int ocr_mask; /* available voltages */
  9. u32 (*translate_vdd)(struct device *, unsigned int);
  10. unsigned int (*status)(struct device *);
  11. int gpio_wp;
  12. int gpio_cd;
  13. unsigned long capabilities;
  14. };
  15. #endif