diff options
author | Fabien Chouteau <fabien.chouteau@barco.com> | 2010-04-08 03:31:15 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-20 16:21:35 -0400 |
commit | 71adf118946957839a13aa4d1094183e05c6c094 (patch) | |
tree | b99d1113b8a36da96fc7b498b2cea39fcc440914 /drivers/usb/gadget/Makefile | |
parent | e49bbce133a049f6f325db6b0cee49f406d03a6e (diff) |
USB: gadget: add HID gadget driver
g_hid is a USB gadget driver implementing the Human Interface Device class
specification. The driver handles basic HID protocol handling in the
kernel, and allows userspace to read/write HID reports trough /dev/hidgX
character devices.
Signed-off-by: Fabien Chouteau <fabien.chouteau@barco.com>
Signed-off-by: Peter Korsgaard <peter.korsgaard@barco.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/Makefile')
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 43b51da8d727..3075ff9cae62 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -43,6 +43,7 @@ g_mass_storage-objs := mass_storage.o | |||
43 | g_printer-objs := printer.o | 43 | g_printer-objs := printer.o |
44 | g_cdc-objs := cdc2.o | 44 | g_cdc-objs := cdc2.o |
45 | g_multi-objs := multi.o | 45 | g_multi-objs := multi.o |
46 | g_hid-objs := hid.o | ||
46 | g_nokia-objs := nokia.o | 47 | g_nokia-objs := nokia.o |
47 | 48 | ||
48 | obj-$(CONFIG_USB_ZERO) += g_zero.o | 49 | obj-$(CONFIG_USB_ZERO) += g_zero.o |
@@ -55,6 +56,7 @@ obj-$(CONFIG_USB_G_SERIAL) += g_serial.o | |||
55 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o | 56 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o |
56 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o | 57 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o |
57 | obj-$(CONFIG_USB_CDC_COMPOSITE) += g_cdc.o | 58 | obj-$(CONFIG_USB_CDC_COMPOSITE) += g_cdc.o |
59 | obj-$(CONFIG_USB_G_HID) += g_hid.o | ||
58 | obj-$(CONFIG_USB_G_MULTI) += g_multi.o | 60 | obj-$(CONFIG_USB_G_MULTI) += g_multi.o |
59 | obj-$(CONFIG_USB_G_NOKIA) += g_nokia.o | 61 | obj-$(CONFIG_USB_G_NOKIA) += g_nokia.o |
60 | 62 | ||