]> git.sur5r.net Git - u-boot/blob - include/linux/usb/otg.h
Merge branch 'master' of http://git.denx.de/u-boot-sunxi
[u-boot] / include / linux / usb / otg.h
1 /* include/linux/usb/otg.h
2  *
3  * Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com
4  *
5  * USB OTG (On The Go) defines
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __LINUX_USB_OTG_H
11 #define __LINUX_USB_OTG_H
12
13 enum usb_dr_mode {
14         USB_DR_MODE_UNKNOWN,
15         USB_DR_MODE_HOST,
16         USB_DR_MODE_PERIPHERAL,
17         USB_DR_MODE_OTG,
18 };
19
20 #endif /* __LINUX_USB_OTG_H */