diff options
| author | James Bottomley <James.Bottomley@steeleye.com> | 2005-10-02 11:45:08 -0500 | 
|---|---|---|
| committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-28 14:23:02 -0500 | 
| commit | 9ccfc756a70d454dfa82f48897e2883560c01a0e (patch) | |
| tree | 9a6d3b10b1ec0e5fe7a63252a21598a03e93ad4e /drivers/scsi/constants.c | |
| parent | 9a41a62b74388827998253d62c58707e63cc5874 (diff) | |
| download | olio-linux-3.10-9ccfc756a70d454dfa82f48897e2883560c01a0e.tar.xz olio-linux-3.10-9ccfc756a70d454dfa82f48897e2883560c01a0e.zip  | |
[SCSI] move the mid-layer printk's over to shost/starget/sdev_printk
This should eliminate (at least in the mid layer) to make numeric
assumptions about any of the enumeration variables.  As a side effect,
it will also make all the messages consistent and line us up nicely for
the error logging strategy (if it ever shows itself again).
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/constants.c')
| -rw-r--r-- | drivers/scsi/constants.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/scsi/constants.c b/drivers/scsi/constants.c index f6be2c1c394..09bc81557b6 100644 --- a/drivers/scsi/constants.c +++ b/drivers/scsi/constants.c @@ -1389,10 +1389,7 @@ EXPORT_SYMBOL(scsi_print_msg);  void scsi_print_command(struct scsi_cmnd *cmd)  {  	/* Assume appended output (i.e. not at start of line) */ -	printk("scsi%d : destination target %d, lun %d\n",  -		cmd->device->host->host_no,  -		cmd->device->id,  -		cmd->device->lun); +	sdev_printk("", cmd->device, "\n");  	printk(KERN_INFO "        command: ");  	scsi_print_cdb(cmd->cmnd, cmd->cmd_len, 0);  }  |