Home
last modified time | relevance | path

Searched refs:PACKET_BITS (Results 1 – 2 of 2) sorted by relevance

/titanic_50/usr/src/uts/common/io/usb/clients/usbinput/usbwcm/
H A Dusbwcm.c217 if (PACKET_BITS(0, 0, 8) != 0x02) { in usbwcm_input_graphire()
220 PACKET_BITS(0, 0, 8)); in usbwcm_input_graphire()
227 (PACKET_BITS(3, 0, 8) << 8) | PACKET_BITS(2, 0, 8), in usbwcm_input_graphire()
228 (PACKET_BITS(5, 0, 8) << 8) | PACKET_BITS(4, 0, 8)); in usbwcm_input_graphire()
240 (PACKET_BIT(7, 0) << 8) | PACKET_BITS(6, 0, 8), in usbwcm_input_graphire()
247 0 : -(int8_t)PACKET_BITS(6, 0, 8)); in usbwcm_input_graphire()
248 distance = PACKET_BITS(7, 0, 6); in usbwcm_input_graphire()
251 PACKET_BITS(7, 0, 2); in usbwcm_input_graphire()
252 distance = PACKET_BITS(6, 0, 6); in usbwcm_input_graphire()
279 if ((sc->sc_type->protocol == GRAPHIRE4) && PACKET_BITS(7, 3, 5)) { in usbwcm_input_graphire()
[all …]
/titanic_50/usr/src/uts/common/sys/usb/clients/usbinput/usbwcm/
H A Dusbwcm.h436 #define PACKET_BITS(b, s, n) \ macro