Searched refs:uhid (Results 1 – 11 of 11) sorted by relevance
/Linux-v5.15/drivers/hid/ |
D | uhid.c | 59 struct uhid_device *uhid = container_of(work, struct uhid_device, worker); in uhid_device_add_worker() local 62 ret = hid_add_device(uhid->hid); in uhid_device_add_worker() 64 hid_err(uhid->hid, "Cannot register HID device: error %d\n", ret); in uhid_device_add_worker() 66 hid_destroy_device(uhid->hid); in uhid_device_add_worker() 67 uhid->hid = NULL; in uhid_device_add_worker() 68 uhid->running = false; in uhid_device_add_worker() 72 static void uhid_queue(struct uhid_device *uhid, struct uhid_event *ev) in uhid_queue() argument 76 newhead = (uhid->head + 1) % UHID_BUFSIZE; in uhid_queue() 78 if (newhead != uhid->tail) { in uhid_queue() 79 uhid->outq[uhid->head] = ev; in uhid_queue() [all …]
|
D | Makefile | 9 obj-$(CONFIG_UHID) += uhid.o
|
D | Kconfig | 77 module will be called uhid.
|
/Linux-v5.15/samples/uhid/ |
D | .gitignore | 2 /uhid-example
|
D | Makefile | 2 userprogs-always-y += uhid-example
|
/Linux-v5.15/Documentation/hid/ |
D | index.rst | 15 uhid
|
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-v5.15/samples/ |
D | Makefile | 25 subdir-$(CONFIG_SAMPLE_UHID) += uhid
|
/Linux-v5.15/include/linux/ |
D | hid.h | 690 #define HID_USAGE_ID(uhid, utype, ucode) \ argument 691 .usage_hid = (uhid), .usage_type = (utype), .usage_code = (ucode)
|
/Linux-v5.15/Documentation/admin-guide/ |
D | devices.txt | 375 239 = /dev/uhid User-space I/O driver support for HID subsystem
|
/Linux-v5.15/ |
D | MAINTAINERS | 19185 F: drivers/hid/uhid.c 19186 F: include/uapi/linux/uhid.h
|