ohci.h 360 B

123456789101112131415161718
  1. #ifndef ASMARM_ARCH_OHCI_H
  2. #define ASMARM_ARCH_OHCI_H
  3. struct device;
  4. struct pxaohci_platform_data {
  5. int (*init)(struct device *);
  6. void (*exit)(struct device *);
  7. int port_mode;
  8. #define PMM_NPS_MODE 1
  9. #define PMM_GLOBAL_MODE 2
  10. #define PMM_PERPORT_MODE 3
  11. };
  12. extern void pxa_set_ohci_info(struct pxaohci_platform_data *info);
  13. #endif