Searched refs:uhid (Results 1 – 11 of 11) sorted by relevance
| /linux/drivers/hid/ |
| H A D | uhid.c | 70 struct uhid_device *uhid = container_of(work, struct uhid_device, worker); in uhid_device_add_worker() local 73 ret = hid_add_device(uhid->hid); in uhid_device_add_worker() 75 hid_err(uhid->hid, "Cannot register HID device: error %d\n", ret); in uhid_device_add_worker() 87 WRITE_ONCE(uhid->running, false); in uhid_device_add_worker() 88 wake_up_interruptible(&uhid->report_wait); in uhid_device_add_worker() 92 static void uhid_queue(struct uhid_device *uhid, struct uhid_event *ev) in uhid_queue() argument 96 newhead = (uhid->head + 1) % UHID_BUFSIZE; in uhid_queue() 98 if (newhead != uhid->tail) { in uhid_queue() 99 uhid->outq[uhid->head] = ev; in uhid_queue() 100 uhid->head = newhead; in uhid_queue() [all …]
|
| H A D | Kconfig | 81 module will be called uhid.
|
| /linux/tools/testing/selftests/hid/tests/ |
| H A D | base_device.py | 36 from hidtools.uhid import UHIDDevice 123 def __init__(self: "HIDIsReady", uhid: UHIDDevice) -> None: 124 self.uhid = uhid 139 def __init__(self: "UdevHIDIsReady", uhid: UHIDDevice) -> None: 140 super().__init__(uhid) 178 return self._uhid_devices[self.uhid.hid_id]
|
| /linux/samples/uhid/ |
| H A D | Makefile | 2 userprogs-always-y += uhid-example
|
| H A D | .gitignore | 2 /uhid-example
|
| /linux/samples/ |
| H A D | Makefile | 31 subdir-$(CONFIG_SAMPLE_UHID) += uhid
|
| /linux/Documentation/hid/ |
| H A D | uhid.rst | 13 There is an example user-space application in ./samples/uhid/uhid-example.c 20 This is /dev/uhid by default. 23 device with the HID subsystem, then you need to open /dev/uhid once for each
|
| /linux/drivers/hid/bpf/progs/ |
| H A D | README | 88 run: '/usr/local/bin/udev-hid-bpf add /sys/devices/virtual/misc/uhid/0003:28BD:095B.0E57 /etc/udev-…
|
| /linux/include/linux/ |
| H A D | hid.h | 792 #define HID_USAGE_ID(uhid, utype, ucode) \ argument 793 .usage_hid = (uhid), .usage_type = (utype), .usage_code = (ucode)
|
| /linux/Documentation/admin-guide/ |
| H A D | devices.txt | 375 239 = /dev/uhid User-space I/O driver support for HID subsystem
|
| /linux/ |
| H A D | MAINTAINERS | 26717 F: drivers/hid/uhid.c 26718 F: include/uapi/linux/uhid.h
|