read_command      572 drivers/cdrom/gdrom.c 	struct packet_command *read_command;
read_command      575 drivers/cdrom/gdrom.c 	read_command = kzalloc(sizeof(struct packet_command), GFP_KERNEL);
read_command      576 drivers/cdrom/gdrom.c 	if (!read_command)
read_command      579 drivers/cdrom/gdrom.c 	read_command->cmd[0] = 0x30;
read_command      580 drivers/cdrom/gdrom.c 	read_command->cmd[1] = 0x20;
read_command      587 drivers/cdrom/gdrom.c 	read_command->cmd[2] = (block >> 16) & 0xFF;
read_command      588 drivers/cdrom/gdrom.c 	read_command->cmd[3] = (block >> 8) & 0xFF;
read_command      589 drivers/cdrom/gdrom.c 	read_command->cmd[4] = block & 0xFF;
read_command      590 drivers/cdrom/gdrom.c 	read_command->cmd[8] = (block_cnt >> 16) & 0xFF;
read_command      591 drivers/cdrom/gdrom.c 	read_command->cmd[9] = (block_cnt >> 8) & 0xFF;
read_command      592 drivers/cdrom/gdrom.c 	read_command->cmd[10] = block_cnt & 0xFF;
read_command      612 drivers/cdrom/gdrom.c 	outsw(GDROM_DATA_REG, &read_command->cmd, 6);
read_command      627 drivers/cdrom/gdrom.c 	kfree(read_command);
read_command      103 drivers/hwmon/sht3x.c 	const char read_command[SHT3X_CMD_LENGTH];
read_command      299 drivers/hwmon/sht3x.c 					      commands->read_command, buffer,
read_command       35 drivers/s390/char/fs3270.c 	int read_command;		/* ccw command to use for reads. */
read_command      260 drivers/s390/char/fs3270.c 		if (fp->read_command == 0 && fp->write_command != 0)
read_command      261 drivers/s390/char/fs3270.c 			fp->read_command = 6;
read_command      262 drivers/s390/char/fs3270.c 		raw3270_request_set_cmd(rq, fp->read_command ? : 2);
read_command      344 drivers/s390/char/fs3270.c 		fp->read_command = arg;
read_command      350 drivers/s390/char/fs3270.c 		rc = put_user(fp->read_command, argp);
read_command     3708 drivers/staging/comedi/drivers/cb_pcidas64.c 	static const int read_command = 0x6;
read_command     3709 drivers/staging/comedi/drivers/cb_pcidas64.c 	unsigned int bitstream = (read_command << 8) | address;