diff options
author | 2014-12-28 15:24:08 +0000 | |
---|---|---|
committer | 2014-12-28 15:24:08 +0000 | |
commit | ce776e0eec0d95e024fa93c1c9446027a56ed05e (patch) | |
tree | 90cbf980ad284b27dccaa41cd3c077b3330ab9c7 | |
parent | Improve documentation of the header/footer macros .Dt, .Os, .TH: (diff) | |
download | wireguard-openbsd-ce776e0eec0d95e024fa93c1c9446027a56ed05e.tar.xz wireguard-openbsd-ce776e0eec0d95e024fa93c1c9446027a56ed05e.zip |
Attach USB HID devices from the Generic Destop page, usage pointer to
ums. This is how the USB Tablet from Qemu in libvirt/kvm shows up and
it works with ums(4). ok mpi@
-rw-r--r-- | sys/dev/usb/ums.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/usb/ums.c b/sys/dev/usb/ums.c index 8fe5004f60d..2576f414d3a 100644 --- a/sys/dev/usb/ums.c +++ b/sys/dev/usb/ums.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ums.c,v 1.39 2014/08/21 14:52:56 mpi Exp $ */ +/* $OpenBSD: ums.c,v 1.40 2014/12/28 15:24:08 matthieu Exp $ */ /* $NetBSD: ums.c,v 1.60 2003/03/11 16:44:00 augustss Exp $ */ /* @@ -95,6 +95,10 @@ ums_match(struct device *parent, void *match, void *aux) uhidev_get_report_desc(uha->parent, &desc, &size); if (hid_is_collection(desc, size, uha->reportid, + HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_POINTER))) + return (UMATCH_IFACECLASS); + + if (hid_is_collection(desc, size, uha->reportid, HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_MOUSE))) return (UMATCH_IFACECLASS); |