Home
last modified time | relevance | path

Searched refs:HID_CONTROL_FIFO_SIZE (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/drivers/hid/usbhid/
Dusbhid.h76 struct hid_control_fifo ctrl[HID_CONTROL_FIFO_SIZE]; /* Control fifo */
83 struct hid_output_fifo out[HID_CONTROL_FIFO_SIZE]; /* Output pipe fifo */
Dhid-core.c504 usbhid->ctrltail = (usbhid->ctrltail + 1) & (HID_CONTROL_FIFO_SIZE - 1); in hid_ctrl()
579 if ((head = (usbhid->ctrlhead + 1) & (HID_CONTROL_FIFO_SIZE - 1)) == usbhid->ctrltail) { in __usbhid_submit_report()
/linux-4.1.27/include/linux/
Dhid.h454 #define HID_CONTROL_FIFO_SIZE 256 /* to init devices with >100 reports */ macro