Byte1             113 drivers/usb/serial/io_ionsp.h #define IS_CMD_STAT_HDR(Byte1)		((Byte1) & IOSP_CMD_STAT_BIT)
Byte1             114 drivers/usb/serial/io_ionsp.h #define IS_DATA_HDR(Byte1)		(!IS_CMD_STAT_HDR(Byte1))
Byte1             116 drivers/usb/serial/io_ionsp.h #define	IOSP_GET_HDR_PORT(Byte1)		((__u8) ((Byte1) & IOSP_PORT_MASK))
Byte1             117 drivers/usb/serial/io_ionsp.h #define	IOSP_GET_HDR_DATA_LEN(Byte1, Byte2)	((__u16) (((__u16)((Byte1) & 0x78)) << 5) | (Byte2))
Byte1             118 drivers/usb/serial/io_ionsp.h #define	IOSP_GET_STATUS_CODE(Byte1)		((__u8) (((Byte1) &  0x78) >> 3))