diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-06-10 15:16:13 +0200 |
---|---|---|
committer | Pawit Pornkitprasan <p.pawit@gmail.com> | 2012-12-05 23:04:08 +0700 |
commit | 34b46bd3209fe3f95ab40ac02b5d0552210a8e2b (patch) | |
tree | dee7ef970144ecb831665096820bda4e0c10ab76 /drivers/hid/Makefile | |
parent | 81e630d23034b33e5c56da391ef8a3c40217b7fe (diff) | |
download | kernel_samsung_aries-34b46bd3209fe3f95ab40ac02b5d0552210a8e2b.zip kernel_samsung_aries-34b46bd3209fe3f95ab40ac02b5d0552210a8e2b.tar.gz kernel_samsung_aries-34b46bd3209fe3f95ab40ac02b5d0552210a8e2b.tar.bz2 |
HID: uhid: introduce user-space I/O driver support for HID
This adds a dummy driver that will support user-space I/O drivers for the
HID subsystem. This allows to write transport-level drivers like USB-HID
and Bluetooth-HID in user-space.
Low-Energy Bluetooth needs this to feed HID data that is parsed in
user-space back into the kernel.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/Makefile')
-rw-r--r-- | drivers/hid/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile index f8cc4ea..5a255e0 100644 --- a/drivers/hid/Makefile +++ b/drivers/hid/Makefile @@ -8,6 +8,7 @@ ifdef CONFIG_DEBUG_FS endif obj-$(CONFIG_HID) += hid.o +obj-$(CONFIG_UHID) += uhid.o hid-$(CONFIG_HIDRAW) += hidraw.o |