ohci.h 380 B

1234567891011121314151617181920
  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. int power_budget;
  12. };
  13. extern void pxa_set_ohci_info(struct pxaohci_platform_data *info);
  14. #endif