ulpi.h 306 B

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