diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-10-24 18:04:36 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-28 22:04:15 -0400 |
commit | 017560fca496f72ed9dd734ffde63ce39dfe0411 (patch) | |
tree | e63ae9a28fc179e715eda32f12aaec4ca752651b /drivers/scsi/tmscsim.c | |
parent | 3bf743e7c891d8be8295650b7a6a9b5af083b096 (diff) |
[SCSI] use sfoo_printk() in drivers
Rejections fixed up and
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/tmscsim.c')
-rw-r--r-- | drivers/scsi/tmscsim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/tmscsim.c b/drivers/scsi/tmscsim.c index 386bd6c67e73..91322aff241d 100644 --- a/drivers/scsi/tmscsim.c +++ b/drivers/scsi/tmscsim.c | |||
@@ -2085,8 +2085,8 @@ static int DC390_abort(struct scsi_cmnd *cmd) | |||
2085 | struct dc390_acb *pACB = (struct dc390_acb*) cmd->device->host->hostdata; | 2085 | struct dc390_acb *pACB = (struct dc390_acb*) cmd->device->host->hostdata; |
2086 | struct dc390_dcb *pDCB = (struct dc390_dcb*) cmd->device->hostdata; | 2086 | struct dc390_dcb *pDCB = (struct dc390_dcb*) cmd->device->hostdata; |
2087 | 2087 | ||
2088 | printk("DC390: Abort command (pid %li, Device %02i-%02i)\n", | 2088 | scmd_printk(KERN_WARNING, cmd, |
2089 | cmd->pid, cmd->device->id, cmd->device->lun); | 2089 | "DC390: Abort command (pid %li)\n", cmd->pid); |
2090 | 2090 | ||
2091 | /* abort() is too stupid for already sent commands at the moment. | 2091 | /* abort() is too stupid for already sent commands at the moment. |
2092 | * If it's called we are in trouble anyway, so let's dump some info | 2092 | * If it's called we are in trouble anyway, so let's dump some info |