mci.h 359 B

123456789101112131415
  1. #ifndef _ARCH_MCI_H
  2. #define _ARCH_MCI_H
  3. struct s3c24xx_mci_pdata {
  4. unsigned int wprotect_invert : 1;
  5. unsigned int detect_invert : 1; /* set => detect active high. */
  6. unsigned int gpio_detect;
  7. unsigned int gpio_wprotect;
  8. unsigned long ocr_avail;
  9. void (*set_power)(unsigned char power_mode,
  10. unsigned short vdd);
  11. };
  12. #endif /* _ARCH_NCI_H */