summaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/Kconfig
blob: b8375c661ea36446c1d86a60e44ef2265f294de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
menuconfig USB_GADGET
	bool "USB gadget support            "

if USB_GADGET

config USB_GADGET_DUALSPEED
	bool

choice
	prompt "USB Peripheral Controller"

config USB_GADGET_DRIVER_ARC
	bool
	prompt "Arc OTG device core"
	depends on ARCH_IMX
	select USB_GADGET_DUALSPEED
endchoice

choice
	prompt "USB Gadget drivers"

config USB_GADGET_DFU
	bool
	prompt "Device Firmware Update Gadget"

config USB_GADGET_SERIAL
	bool
	depends on EXPERIMENTAL
	prompt "Serial Gadget"

endchoice

endif