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

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

Merge "usb: gadget: Add separate Config option for compiling rndis.c"

parents 262e8bde 245a725e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -184,6 +184,9 @@ config USB_F_EEM
config USB_F_SUBSET
	tristate

config USB_RNDIS
	tristate

config USB_F_RNDIS
	tristate

@@ -327,6 +330,7 @@ config USB_CONFIGFS_RNDIS
	depends on USB_CONFIGFS
	depends on NET
	select USB_U_ETHER
	select USB_RNDIS
	select USB_F_RNDIS
	help
	   Microsoft Windows XP bundles the "Remote NDIS" (RNDIS) protocol,
@@ -576,6 +580,7 @@ config USB_CONFIGFS_F_QDSS
config USB_CONFIGFS_F_GSI
	bool "USB GSI function"
	select USB_F_GSI
	select USB_RNDIS
	depends on USB_CONFIGFS
	help
	  Generic function driver to support h/w acceleration to IPA
+3 −2
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ obj-$(CONFIG_USB_F_SERIAL) += usb_f_serial.o
usb_f_obex-y			:= f_obex.o
obj-$(CONFIG_USB_F_OBEX)	+= usb_f_obex.o
obj-$(CONFIG_USB_U_ETHER)	+= u_ether.o
obj-$(CONFIG_USB_RNDIS)		+= rndis.o
usb_f_ncm-y			:= f_ncm.o
obj-$(CONFIG_USB_F_NCM)		+= usb_f_ncm.o
usb_f_ecm-y			:= f_ecm.o
@@ -27,7 +28,7 @@ usb_f_eem-y := f_eem.o
obj-$(CONFIG_USB_F_EEM)		+= usb_f_eem.o
usb_f_ecm_subset-y		:= f_subset.o
obj-$(CONFIG_USB_F_SUBSET)	+= usb_f_ecm_subset.o
usb_f_rndis-y			:= f_rndis.o rndis.o
usb_f_rndis-y			:= f_rndis.o
obj-$(CONFIG_USB_F_RNDIS)	+= usb_f_rndis.o
usb_f_mass_storage-y		:= f_mass_storage.o storage_common.o
obj-$(CONFIG_USB_F_MASS_STORAGE)+= usb_f_mass_storage.o
@@ -62,5 +63,5 @@ 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
usb_f_gsi-y			:= f_gsi.o rndis.o
usb_f_gsi-y			:= f_gsi.o
obj-$(CONFIG_USB_F_GSI)		+= usb_f_gsi.o