2824bd250f
The following driver provides complete interrupt-in and interrupt-out reports (raw data) to a user program. Until now it uses the HIDIOCGDEVINFO ioctl call, because I don't know better :-(. Perhaps, it will be ok for you - and I will be happy, if you assign 8 minor numbers. I have tested it in several environments and it works very well for me. However, it has a problem with two or more devices at the same hub, if the two or more devices need 1 ms interrupt-in transfers. Unfortunately more than one interrupt-in transfer every ms isn't possible (ehci driver?). This is why the min_interrupt_in_interval and min_interrupt_out_interval are increased to 2 ms (see the corresponding module parameters). This way, I can use two devices simultaneously at the same hub. Signed-off-by: Michael Hund <mhund@ld-didactic.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
21 lines
691 B
Makefile
21 lines
691 B
Makefile
#
|
|
# Makefile for the rest of the USB drivers
|
|
# (the ones that don't fit into any other categories)
|
|
#
|
|
|
|
obj-$(CONFIG_USB_AUERSWALD) += auerswald.o
|
|
obj-$(CONFIG_USB_CYTHERM) += cytherm.o
|
|
obj-$(CONFIG_USB_EMI26) += emi26.o
|
|
obj-$(CONFIG_USB_EMI62) += emi62.o
|
|
obj-$(CONFIG_USB_IDMOUSE) += idmouse.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_PHIDGETKIT) += phidgetkit.o
|
|
obj-$(CONFIG_USB_PHIDGETSERVO) += phidgetservo.o
|
|
obj-$(CONFIG_USB_RIO500) += rio500.o
|
|
obj-$(CONFIG_USB_TEST) += usbtest.o
|
|
obj-$(CONFIG_USB_USS720) += uss720.o
|
|
|
|
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
|