mmc.h 277 B

123456789101112131415
  1. #ifndef ASMARM_ARCH_MMC_H
  2. #define ASMARM_ARCH_MMC_H
  3. #include <linux/mmc/host.h>
  4. struct device;
  5. struct imxmmc_platform_data {
  6. int (*card_present)(struct device *);
  7. int (*get_ro)(struct device *);
  8. };
  9. extern void imx_set_mmc_info(struct imxmmc_platform_data *info);
  10. #endif