mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
66e3e59189
This is a hardware random number generator. The driver provides both a /dev/chaoskeyX entry and hooks the entropy source up to the kernel hwrng interface. More information about the device can be found at http://chaoskey.org The USB ID for ChaosKey was allocated from the OpenMoko USB vendor space and is visible as 'USBtrng' here: http://wiki.openmoko.org/wiki/USB_Product_IDs v2: Respond to review from Oliver Neukum <oneukum@suse.de> * Delete extensive debug infrastructure and replace it with calls to dev_dbg. * Allocate I/O buffer separately from device structure to obey requirements for non-coherant architectures. * Initialize mutexes before registering device to ensure that open cannot be invoked before the device is ready to proceed. * Return number of bytes read instead of -EINTR when partial read operation is aborted due to a signal. * Make sure device mutex is unlocked in read error paths. * Add MAINTAINERS entry for the driver Signed-off-by: Keith Packard <keithp@keithp.com> Cc: Oliver Neukum <oneukum@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
#
|
|
# Makefile for the rest of the USB drivers
|
|
# (the ones that don't fit into any other categories)
|
|
#
|
|
obj-$(CONFIG_USB_ADUTUX) += adutux.o
|
|
obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o
|
|
obj-$(CONFIG_USB_CYPRESS_CY7C63) += cypress_cy7c63.o
|
|
obj-$(CONFIG_USB_CYTHERM) += cytherm.o
|
|
obj-$(CONFIG_USB_EMI26) += emi26.o
|
|
obj-$(CONFIG_USB_EMI62) += emi62.o
|
|
obj-$(CONFIG_USB_EZUSB_FX2) += ezusb.o
|
|
obj-$(CONFIG_USB_FTDI_ELAN) += ftdi-elan.o
|
|
obj-$(CONFIG_USB_IDMOUSE) += idmouse.o
|
|
obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o
|
|
obj-$(CONFIG_USB_ISIGHTFW) += isight_firmware.o
|
|
obj-$(CONFIG_USB_LCD) += usblcd.o
|
|
obj-$(CONFIG_USB_LD) += ldusb.o
|
|
obj-$(CONFIG_USB_LED) += usbled.o
|
|
obj-$(CONFIG_USB_LEGOTOWER) += legousbtower.o
|
|
obj-$(CONFIG_USB_RIO500) += rio500.o
|
|
obj-$(CONFIG_USB_TEST) += usbtest.o
|
|
obj-$(CONFIG_USB_EHSET_TEST_FIXTURE) += ehset.o
|
|
obj-$(CONFIG_USB_TRANCEVIBRATOR) += trancevibrator.o
|
|
obj-$(CONFIG_USB_USS720) += uss720.o
|
|
obj-$(CONFIG_USB_SEVSEG) += usbsevseg.o
|
|
obj-$(CONFIG_USB_YUREX) += yurex.o
|
|
obj-$(CONFIG_USB_HSIC_USB3503) += usb3503.o
|
|
obj-$(CONFIG_USB_CHAOSKEY) += chaoskey.o
|
|
|
|
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
|
|
obj-$(CONFIG_USB_LINK_LAYER_TEST) += lvstest.o
|