Searched defs:read_command (Results 1 - 3 of 3) sorted by relevance

/drivers/s390/char/
H A Dfs3270.c34 int read_command; /* ccw command to use for reads. */ member in struct:fs3270
260 if (fp->read_command == 0 && fp->write_command != 0)
261 fp->read_command = 6;
262 raw3270_request_set_cmd(rq, fp->read_command ? : 2);
344 fp->read_command = arg;
350 rc = put_user(fp->read_command, argp);
/drivers/cdrom/
H A Dgdrom.c588 struct packet_command *read_command; local
595 read_command = kzalloc(sizeof(struct packet_command), GFP_KERNEL);
596 if (!read_command)
598 read_command->cmd[0] = 0x30;
599 read_command->cmd[1] = 0x20;
610 read_command->cmd[2] = (block >> 16) & 0xFF;
611 read_command->cmd[3] = (block >> 8) & 0xFF;
612 read_command->cmd[4] = block & 0xFF;
613 read_command->cmd[8] = (block_cnt >> 16) & 0xFF;
614 read_command
[all...]
/drivers/staging/comedi/drivers/
H A Dcb_pcidas64.c3875 static const int read_command = 0x6; local
3876 unsigned int bitstream = (read_command << 8) | address;

Completed in 93 milliseconds