diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2007-07-04 14:26:01 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-07-14 19:57:54 -0400 |
commit | a73e45b3da2be548c8f45cf887e4171a8f39a3c3 (patch) | |
tree | 68db2e6b1db88ba7555fb49afea8eeaa68121823 /drivers/scsi | |
parent | 0ab179bcf31fd54c7b34b4191ea8591267641e92 (diff) |
[SCSI] scsi.c: convert to use the data buffer accessors
- a couple of prints, they can use the accessors
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 64c8595ee712..a691dda40d2c 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -368,7 +368,7 @@ void scsi_log_send(struct scsi_cmnd *cmd) | |||
368 | if (level > 3) { | 368 | if (level > 3) { |
369 | printk(KERN_INFO "buffer = 0x%p, bufflen = %d," | 369 | printk(KERN_INFO "buffer = 0x%p, bufflen = %d," |
370 | " done = 0x%p, queuecommand 0x%p\n", | 370 | " done = 0x%p, queuecommand 0x%p\n", |
371 | cmd->request_buffer, cmd->request_bufflen, | 371 | scsi_sglist(cmd), scsi_bufflen(cmd), |
372 | cmd->done, | 372 | cmd->done, |
373 | cmd->device->host->hostt->queuecommand); | 373 | cmd->device->host->hostt->queuecommand); |
374 | 374 | ||