ulpi.h 325 B

12345678910111213141516
  1. #ifndef __MACH_ULPI_H
  2. #define __MACH_ULPI_H
  3. #ifdef CONFIG_USB_ULPI
  4. struct otg_transceiver *imx_otg_ulpi_create(unsigned int flags);
  5. #else
  6. static inline struct otg_transceiver *imx_otg_ulpi_create(unsigned int flags)
  7. {
  8. return NULL;
  9. }
  10. #endif
  11. extern struct otg_io_access_ops mxc_ulpi_access_ops;
  12. #endif /* __MACH_ULPI_H */