Lines Matching defs:command
26 /* commands via USB, must match command ids in the firmware */
95 /* Send command to device, and get response. */
120 * Stop command processing if a previous command
163 /* Send command (no data) */
164 static int diolan_usb_cmd(struct i2c_diolan_u2c *dev, u8 command, bool flush)
166 dev->obuffer[dev->olen++] = command;
171 /* Send command with one byte of data */
172 static int diolan_usb_cmd_data(struct i2c_diolan_u2c *dev, u8 command, u8 data,
175 dev->obuffer[dev->olen++] = command;
181 /* Send command with two bytes of data */
182 static int diolan_usb_cmd_data2(struct i2c_diolan_u2c *dev, u8 command, u8 d1,
185 dev->obuffer[dev->olen++] = command;