mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
20 lines
377 B
C
20 lines
377 B
C
|
/* include/linux/usb/dwc3-omap.h
|
||
|
*
|
||
|
* Copyright (c) 2014 Texas Instruments Incorporated - http://www.ti.com
|
||
|
*
|
||
|
* Designware SuperSpeed Glue
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __DWC3_OMAP_H_
|
||
|
#define __DWC3_OMAP_H_
|
||
|
|
||
|
enum dwc3_omap_utmi_mode {
|
||
|
DWC3_OMAP_UTMI_MODE_UNKNOWN = 0,
|
||
|
DWC3_OMAP_UTMI_MODE_HW,
|
||
|
DWC3_OMAP_UTMI_MODE_SW,
|
||
|
};
|
||
|
|
||
|
#endif /* __DWC3_OMAP_H_ */
|