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

Commit d0a27c21 authored by Jack Pham's avatar Jack Pham
Browse files

usb: gadget: Add snapshot of USB QDSS function driver



This change adds the USB QDSS function driver which allows
communication of QDSS trace/debug functionality over USB.
This snapshot is taken as of commit 29e6452e14b6 ("net: rmnet_data:
Fix comments on code review").

Add missing MODULE_LICENSE to f_qdss.c as well.

Change-Id: If56e93ebd7a7f83a54d917eba0c4f105a24a0cdc
Signed-off-by: default avatarJack Pham <jackp@codeaurora.org>
parent 673b9702
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -230,6 +230,9 @@ config USB_F_ACC
config USB_F_DIAG
	tristate

config USB_F_QDSS
	tristate

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

config USB_CONFIGFS
@@ -543,6 +546,13 @@ config USB_CONFIGFS_F_DIAG
	  Diag function driver enables support for Qualcomm diagnostics
	  port over USB.

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.

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_accessory-y := f_accessory.o
obj-$(CONFIG_USB_F_ACC)         += usb_f_accessory.o
usb_f_diag-y			:= f_diag.o
obj-$(CONFIG_USB_F_DIAG)	+= usb_f_diag.o
usb_f_qdss-y			:= f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)	+= usb_f_qdss.o
Loading