Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e32618e5 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: gadget: Add snapshot of USB QDSS Function driver"

parents 50cdbd7a fc695af6
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -232,6 +232,9 @@ config USB_F_AUDIO_SRC
config USB_F_ACC
	tristate

config USB_F_QDSS
	tristate

# this first set of drivers all depend on bulk-capable hardware.

config USB_CONFIGFS
@@ -557,6 +560,16 @@ config USB_CONFIGFS_F_CCID
	  allowing a userspace component to be able to provide the
	  implementation necessary to interface with the smartcard.

config USB_CONFIGFS_F_QDSS
	bool "USB QDSS function"
	select USB_F_QDSS
	depends on USB_CONFIGFS
	help
	  USB QDSS function driver to get hwtracing related data over
	  USB. USB QDSS function driver which allows communication
	  between USB BAM and QDSS BAM for QDSS debug functionality
	  over USB.

choice
	tristate "USB Gadget precomposed configurations"
	default USB_ETH
+2 −0
Original line number Diff line number Diff line
@@ -60,3 +60,5 @@ usb_f_audio_source-y := f_audio_source.o
obj-$(CONFIG_USB_F_AUDIO_SRC)   += usb_f_audio_source.o
usb_f_accessory-y               := f_accessory.o
obj-$(CONFIG_USB_F_ACC)         += usb_f_accessory.o
usb_f_qdss-y			:= f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)	+= usb_f_qdss.o
Loading