You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
306 B
16 lines
306 B
#ifndef __MACH_ULPI_H
|
|
#define __MACH_ULPI_H
|
|
|
|
#ifdef CONFIG_USB_ULPI
|
|
struct usb_phy *imx_otg_ulpi_create(unsigned int flags);
|
|
#else
|
|
static inline struct usb_phy *imx_otg_ulpi_create(unsigned int flags)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif
|
|
|
|
extern struct usb_phy_io_ops mxc_ulpi_access_ops;
|
|
|
|
#endif /* __MACH_ULPI_H */
|
|
|
|
|