20 lines
464 B
C
20 lines
464 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* USB PHY defines
|
|
*
|
|
* These APIs may be used between USB controllers. USB device drivers
|
|
* (for either host or peripheral roles) don't use these calls; they
|
|
* continue to use just usb_device and usb_gadget.
|
|
*/
|
|
|
|
#ifndef __LINUX_USB_PHY_H
|
|
#define __LINUX_USB_PHY_H
|
|
|
|
enum usb_phy_interface {
|
|
USBPHY_INTERFACE_MODE_UNKNOWN,
|
|
USBPHY_INTERFACE_MODE_UTMI,
|
|
USBPHY_INTERFACE_MODE_UTMIW,
|
|
};
|
|
|
|
#endif /* __LINUX_USB_PHY_H */
|