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/scsi_ioctl.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/scsi_ioctl.c')
| -rw-r--r-- | drivers/scsi/scsi_ioctl.c | 10 | 
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/scsi/scsi_ioctl.c b/drivers/scsi/scsi_ioctl.c index 6a3f6aae8a9..26f5bc6d9c8 100644 --- a/drivers/scsi/scsi_ioctl.c +++ b/drivers/scsi/scsi_ioctl.c @@ -122,13 +122,9 @@ static int ioctl_internal_command(struct scsi_device *sdev, char *cmd,  				break;  			}  		default:	/* Fall through for non-removable media */ -			printk(KERN_INFO "ioctl_internal_command: <%d %d %d " -			       "%d> return code = %x\n", -			       sdev->host->host_no, -			       sdev->channel, -			       sdev->id, -			       sdev->lun, -			       result); +			sdev_printk(KERN_INFO, sdev, +				    "ioctl_internal_command return code = %x\n", +				    result);  			scsi_print_sense_hdr("   ", &sshdr);  			break;  		}  |