aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/NCR5380.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/NCR5380.c')
-rw-r--r--drivers/scsi/NCR5380.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c
index aca181e508f8..a30af00c5a1a 100644
--- a/drivers/scsi/NCR5380.c
+++ b/drivers/scsi/NCR5380.c
@@ -754,7 +754,7 @@ static int __maybe_unused NCR5380_show_info(struct seq_file *m,
754static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m) 754static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
755{ 755{
756 seq_printf(m, "scsi%d : destination target %d, lun %llu\n", cmd->device->host->host_no, cmd->device->id, cmd->device->lun); 756 seq_printf(m, "scsi%d : destination target %d, lun %llu\n", cmd->device->host->host_no, cmd->device->id, cmd->device->lun);
757 seq_printf(m, " command = "); 757 seq_puts(m, " command = ");
758 lprint_command(cmd->cmnd, m); 758 lprint_command(cmd->cmnd, m);
759} 759}
760 760
@@ -764,7 +764,7 @@ static void lprint_command(unsigned char *command, struct seq_file *m)
764 lprint_opcode(command[0], m); 764 lprint_opcode(command[0], m);
765 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i) 765 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
766 seq_printf(m, "%02x ", command[i]); 766 seq_printf(m, "%02x ", command[i]);
767 seq_printf(m, "\n"); 767 seq_puts(m, "\n");
768} 768}
769 769
770static void lprint_opcode(int opcode, struct seq_file *m) 770static void lprint_opcode(int opcode, struct seq_file *m)