Home
last modified time | relevance | path

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

/openbmc/linux/drivers/input/joystick/iforce/
H A Diforce.h60 #define XMIT_SIZE 256 macro
61 #define XMIT_INC(var, n) (var)+=n; (var)&= XMIT_SIZE -1
93 unsigned char xmit_data[XMIT_SIZE];
H A Diforce-packets.c45 if (CIRC_SPACE(head, tail, XMIT_SIZE) < n+2) { in iforce_send_packet()
63 c = CIRC_SPACE_TO_END(head, tail, XMIT_SIZE); in iforce_send_packet()
H A Diforce-usb.c47 c = CIRC_CNT_TO_END(iforce->xmit.head, iforce->xmit.tail, XMIT_SIZE); in __iforce_usb_xmit()