Home
last modified time | relevance | path

Searched refs:uhid (Results 1 – 11 of 11) sorted by relevance

/linux-5.19.10/drivers/hid/
Duhid.c70 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 …]
DMakefile9 obj-$(CONFIG_UHID) += uhid.o
DKconfig77 module will be called uhid.
/linux-5.19.10/samples/uhid/
D.gitignore2 /uhid-example
DMakefile2 userprogs-always-y += uhid-example
/linux-5.19.10/Documentation/hid/
Dindex.rst15 uhid
Duhid.rst13 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-5.19.10/samples/
DMakefile28 subdir-$(CONFIG_SAMPLE_UHID) += uhid
/linux-5.19.10/include/linux/
Dhid.h721 #define HID_USAGE_ID(uhid, utype, ucode) \ argument
722 .usage_hid = (uhid), .usage_type = (utype), .usage_code = (ucode)
/linux-5.19.10/Documentation/admin-guide/
Ddevices.txt375 239 = /dev/uhid User-space I/O driver support for HID subsystem
/linux-5.19.10/
DMAINTAINERS20523 F: drivers/hid/uhid.c
20524 F: include/uapi/linux/uhid.h