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

Commit 7baea6e5 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

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

parents da96e0aa 50a21845
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -182,6 +182,9 @@ config USB_F_SUBSET
config USB_F_RNDIS
	tristate

config USB_F_QCRNDIS
	tristate

config USB_F_MASS_STORAGE
	tristate

@@ -312,6 +315,14 @@ config USB_CONFIGFS_ECM_SUBSET
	  On hardware that can't implement the full protocol,
	  a simple CDC subset is used, placing fewer demands on USB.

config USB_CONFIGFS_QCRNDIS
	bool "QCRNDIS"
	depends on USB_CONFIGFS
	depends on RNDIS_IPA
	depends on NET
	select USB_U_ETHER
	select USB_F_QCRNDIS

config USB_CONFIGFS_RNDIS
	bool "RNDIS"
	depends on USB_CONFIGFS
+2 −0
Original line number Diff line number Diff line
@@ -64,3 +64,5 @@ usb_f_gsi-y := f_gsi.o rndis.o
obj-$(CONFIG_USB_F_GSI)         += usb_f_gsi.o
usb_f_qdss-y			:= f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)        += usb_f_qdss.o
usb_f_qcrndis-y			:= f_qc_rndis.o rndis.o u_data_ipa.o
obj-$(CONFIG_USB_F_QCRNDIS)	+= usb_f_qcrndis.o
Loading