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

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

Merge "usb: gadget: Add snapshot of CCID function driver"

parents 818e8054 96447cb9
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -223,6 +223,9 @@ config USB_F_DIAG
config USB_F_CDEV
	tristate

config USB_F_CCID
	tristate

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

config USB_CONFIGFS
@@ -512,6 +515,18 @@ config USB_CONFIGFS_F_CDEV
	  asynchronous notification to the host. This driver is typically
	  used to support DUN/NMEA functions.

config USB_CONFIGFS_F_CCID
	bool "USB CCID function"
	select USB_F_CCID
	depends on USB_CONFIGFS
	help
	  The Chip Card Interface Device (CCID) function implements a USB
	  interface that exposes a standard CSCID class that consists of a
	  pair of bulk IN and OUT endpoints and a single interrupt IN
	  endpoint. This driver provides a character device interface
	  allowing a userspace component to be able to provide the
	  implementation necessary to interface with the smartcard.

choice
	tristate "USB Gadget precomposed configurations"
	default USB_ETH
+2 −0
Original line number Diff line number Diff line
@@ -54,3 +54,5 @@ usb_f_diag-y := f_diag.o
obj-$(CONFIG_USB_F_DIAG)	+= usb_f_diag.o
usb_f_cdev-y			:= f_cdev.o
obj-$(CONFIG_USB_F_CDEV)	+= usb_f_cdev.o
usb_f_ccid-y			:= f_ccid.o
obj-$(CONFIG_USB_F_CCID)	+= usb_f_ccid.o