aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/input/ums.c
Commit message (Expand)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
* ums(4): Disable vendor usage page button supportVladimir Kondratyev2022-12-241-6/+12
* evdev: Extend EVIOCGRAB ioctl scope to cover sysmouse interfaceVladimir Kondratyev2022-11-171-0/+4
* usb: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-061-3/+1
* ums(4): Start USB xfers on opening of evdev node unconditionally.Vladimir Kondratyev2021-05-231-1/+1
* ums(4): Do not stop USB xfers on FIFO close when evdev is still activeVladimir Kondratyev2021-05-231-5/+8
* hid: Replace USBHID_ENABLED kernel config option with loader tunableVladimir Kondratyev2021-01-141-2/+0
* hid: Import usbhid - USB transport backend for HID subsystem.Vladimir Kondratyev2021-01-071-0/+2
* hid: Chase for HID function name changes in existing USB HID driversVladimir Kondratyev2021-01-071-1/+3
* Factor-out hardware-independent part of USB HID support to new moduleVladimir Kondratyev2021-01-071-0/+1
* usb: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-14/+0
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (2 of many)Pawel Biernacki2020-02-151-4/+6
* usb: remove some extraneous tty.h includesKyle Evans2019-12-011-1/+0
* evdev: remove soft context from evdev methods parameter list.Vladimir Kondratyev2018-08-131-5/+7
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* ums(4): Unreverse evdev Tilt-axis reporting to match Linux.Vladimir Kondratyev2017-10-191-3/+3
* Bring the handling of the y axis in the ums driver in-line with the otherPeter Grehan2017-03-221-1/+1
* Make sure the virtual T-axis buttons generate button release event(s)Hans Petter Selasky2016-11-011-2/+5
* Make sure the virtual T-axis buttons gets cleared for USB mice which hasHans Petter Selasky2016-10-311-1/+4
* EVDEV: ums evdev support improvements: locking and event reportingOleksandr Tymoshenko2016-10-221-23/+40
* const-ify struct evdev_methodsOleksandr Tymoshenko2016-10-031-1/+1
* Modularize evdevOleksandr Tymoshenko2016-10-021-12/+12
* Declare a module for evdev and add dependency to ukbd(4) and ums(4)Oleksandr Tymoshenko2016-09-301-0/+3
* Add evdev support to ums(4)Oleksandr Tymoshenko2016-09-211-55/+203
* Correctly map the USB mouse tilt delta values into buttons 5 and 6Hans Petter Selasky2016-09-081-2/+2
* dev/usb: minor spelling fixes in comments.Pedro F. Giffuni2016-05-021-1/+1
* Create a USB_PNP_INFO and use it to export the existing PNPWarner Losh2015-12-111-0/+1
* Make a bunch of USB debug SYSCTLs tunable, so that their value(s) canHans Petter Selasky2015-01-051-1/+1
* Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on de...Sofian Brabez2013-01-301-1/+2
* Fix detection of Razer Copperhead as a USB mouse.Hans Petter Selasky2013-01-101-40/+7
* Add UQ_UMS_IGNORE quirk.Hans Petter Selasky2012-09-171-0/+3
* Move reset of USB mouse parameters from the USB mouse attach toHans Petter Selasky2012-05-141-28/+46
* Fix compiler warnings, mostly signed issues,Hans Petter Selasky2012-04-021-3/+3
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* Make ums(4) driver more picky, not attaching to "mouses" with absoluteAlexander Motin2011-07-291-8/+40
* - Export more USB device ID's.Hans Petter Selasky2011-06-241-0/+7
* usb: change to one-pass probing of device driversAndriy Gapon2011-05-181-2/+2
* - Do not output the trailing newline to the HIDHans Petter Selasky2011-03-211-4/+6
* Remove unneeded includes of <sys/linker_set.h>. Other headers that useJohn Baldwin2011-01-111-1/+0
* Fix UMS_BUTTON_MAX define nameAndrew Thompson2010-09-021-1/+1
* Add support for extra buttons on the Kensington Slimblade Trackball.Andrew Thompson2010-09-021-0/+12
* Add missing MODULE_VERSION() definitions, this resolves problems aroundAndrew Thompson2010-09-011-0/+1
* Enable support for mouse panning wheels.Andrew Thompson2010-05-121-0/+12
* Change USB_DEBUG to #ifdef and allow it to be turned off. Previously this hadAndrew Thompson2010-04-221-2/+4
* The NetBSD Foundation has granted permission to remove clause 3 and 4 fromJoel Dahl2010-03-031-7/+0
* Reduce probe priority of USB input devices to BUS_PROBE_GENERIC fromNathan Whitehorn2009-11-111-2/+2
* Allow dumping the USB mouse reports via 'sysctl -b dev.ums.N.parseinfo',Andrew Thompson2009-10-221-1/+71
* USB inputAlfred Perlstein2009-07-301-3/+45
* - Make struct usb_xfer opaque so that drivers can not access the internalsAndrew Thompson2009-06-231-28/+43