Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/input/joystick/iforce/
Diforce.h81 #define XMIT_SIZE 256 macro
82 #define XMIT_INC(var, n) (var)+=n; (var)&= XMIT_SIZE -1
120 unsigned char xmit_data[XMIT_SIZE];
Diforce-packets.c59 if (CIRC_SPACE(head, tail, XMIT_SIZE) < n+2) { in iforce_send_packet()
77 c = CIRC_SPACE_TO_END(head, tail, XMIT_SIZE); in iforce_send_packet()
Diforce-usb.c48 c = CIRC_CNT_TO_END(iforce->xmit.head, iforce->xmit.tail, XMIT_SIZE); in iforce_usb_xmit()