mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Replace instances of http://www.ti.com with https://www.ti.com Signed-off-by: Nishanth Menon <nm@ti.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/* include/linux/usb/dwc3-omap.h
 | 
						|
 *
 | 
						|
 * Copyright (c) 2014 Texas Instruments Incorporated - https://www.ti.com
 | 
						|
 *
 | 
						|
 * Designware SuperSpeed Glue
 | 
						|
 */
 | 
						|
 | 
						|
#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_ */
 |