summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/hidms.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move HID support files out of dev/usb into new dev/hid directoryjcs2016-01-081-488/+0
| | | | | | | | | These files aren't USB-specific and were used by the previous Bluetooth implementation, and will be used by the upcoming HID-over-i2C implementation ok deraadt previous version ok kettenis and mpi
* for mice with wheels, check for W direction at AC Pan input used injcs2015-11-051-2/+9
| | | | | | some newer mice ok miod
* Backport FreeBSD's HID parser in order to properly parse `moderm'mpi2014-05-121-6/+6
| | | | | | | input device descriptors, notably if they include an Item with an Usage array (Min-Max range) and others single Usage elements. Tested by many, thanks! ok andre@
* Plug a memory leak related to HID descriptor parsing.mpi2014-05-051-1/+2
| | | | ok jsg@
* Merge uhts(1) into ums(1). The code is amost the same, so no need to duplicate.edd2013-08-091-1/+35
| | | | | | | | A part of ongoing work to improve touchscreen/digitiser support. A diff will follow shortly to remove uhts(1). OK matthieu@, with input from mpi@
* Let ums probe bounds of absolute devices if available.matthieu2011-08-191-2/+21
| | | | ok shadchin@ some weeks ago.
* Do not use NULL in integer comparisons. No functional change.miod2011-04-071-2/+2
| | | | ok matthew@ tedu@, also eyeballed by at least krw@ oga@ kettenis@ jsg@
* Add TouchScreen support. Makes newer Gunze USB TouchScreen devices work.kettenis2011-03-041-7/+86
| | | | ok deraadt@
* Factorization of the bluetooth and usb hid input driver logic, to reduce codemiod2010-07-311-0/+348
duplication and divergence. Thanks to mlarkin@ for bluetooth devices tests.