Lines Matching defs:command
48 static void put_command_and_length(u8 *data, int command, int length)
50 data[0] = (command >> 16) & 0xff;
51 data[1] = (command >> 8) & 0xff;
52 data[2] = command & 0xff;
131 static u8 command[8] = {0x07, 0x40, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff};
133 put_checksum(&command[0], command[0]);
134 if ((dst_put_ci(state, command, sizeof(command), state->messages, GET_REPLY)) < 0) {
153 // First, the command and length fields
186 // Set the command and length of the output
292 u32 command = 0;
301 command = command | p_ca_message->msg[i];
303 command = command << 8;
305 dprintk(verbose, DST_CA_NOTICE, 1, " Command=[0x%x]", command);
307 switch (command) {
453 u32 command;
468 command = 0;
471 command = command | p_ca_message->msg[i];
473 command = command << 8;
475 dprintk(verbose, DST_CA_DEBUG, 1, " Command=[0x%x]\n", command);
477 switch (command) {