aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/evdev/input-event-codes.h
Commit message (Collapse)AuthorAgeFilesLines
* evdev: Drop comments from input-event-codes.hVladimir Kondratyev2026-02-171-308/+177
| | | | | | | | | They were copied intact from the Linux GPL-only file. Requested by: imp, glebius MFC after: 1 week (cherry picked from commit 89aa8a94053fdd22ed716fdf424a2d10e70b3188)
* evdev: Sync event codes with Linux kernel 6.18Vladimir Kondratyev2026-02-171-1/+27
| | | | | | MFC after: 1 month (cherry picked from commit 8d9a5d44b155af7123893a6948ad7e86b48c57b3)
* evdev: Sync event codes with Linux kernel 6.5Vladimir Kondratyev2023-11-271-5/+38
| | | | (cherry picked from commit 87a53bef41fe769920f925e74fedddafd5187b93)
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* [evdev] Sync event codes with Linux kernel 5.6Vladimir Kondratyev2020-05-041-2/+104
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=360625
* [evdev] Sync event codes with Linux kernel 4.16Vladimir Kondratyev2018-06-031-0/+36
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=334555
* Change my email address to wulf@FreeBSD.org in copyright headers.Vladimir Kondratyev2017-07-231-1/+1
| | | | | | | | Approved by: gonzo (mentor) MFC after: 2 weeks Notes: svn path=/head/; revision=321399
* Add evdev protocol implementationOleksandr Tymoshenko2016-09-111-0/+819
evdev is a generic input event interface compatible with Linux evdev API at ioctl level. It allows using unmodified (apart from header name) input evdev drivers in Xorg, Wayland, Qt. This commit has only generic kernel API. evdev support for individual hardware drivers like ukbd, ums, atkbd, etc. will be committed later. Project was started by Jakub Klama as part of GSoC 2014. Jakub's evdev implementation was later used as a base, updated and finished by Vladimir Kondratiev. Submitted by: Vladimir Kondratiev <wulf@cicgroup.ru> Reviewed by: adrian, hans Differential Revision: https://reviews.freebsd.org/D6998 Notes: svn path=/head/; revision=305706