From 903a4691a3f16df94717bada49ac772026a02706 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Fri, 6 Aug 1993 12:11:52 +0000 Subject: [PATCH] Removed tabs from the front of XXU: messages to make it fit the other messages closer. Added missing new line to the message about to many scsi cd drives. --- sys/scsi/cd.c | 4 ++-- sys/scsi/sd.c | 4 ++-- sys/scsi/st.c | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c index a66a0f12e315..538c9e1d4222 100644 --- a/sys/scsi/cd.c +++ b/sys/scsi/cd.c @@ -13,7 +13,7 @@ * functioning of this software in any circumstances. * */ -static char rev[] = "$Revision: 1.3 $"; +static char rev[] = "$Revision: 1.2 $"; /* * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 @@ -126,7 +126,7 @@ struct scsi_switch *scsi_switch; \*******************************************************/ if( unit >= NCD) { - printf("Too many scsi CDs..(%d > %d) reconfigure kernel",(unit + 1),NCD); + printf("Too many scsi CDs..(%d > %d) reconfigure kernel\n",(unit + 1),NCD); return(0); } /*******************************************************\ diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index 8894fb8ca16f..fda382beeda0 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -14,7 +14,7 @@ * */ -static char rev[] = "$Revision: 1.3 $"; +static char rev[] = "$Revision: 1.2 $"; /* * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992 @@ -174,7 +174,7 @@ struct scsi_switch *scsi_switch; * request must specify this. * \*******************************************************/ sd_get_parms(unit, SCSI_NOSLEEP | SCSI_NOMASK); - printf(" sd%d: %dMB, cyls %d, heads %d, secs %d, bytes/sec %d\n", + printf("sd%d: %dMB, cyls %d, heads %d, secs %d, bytes/sec %d\n", unit, ( dp->cyls * dp->heads diff --git a/sys/scsi/st.c b/sys/scsi/st.c index b85da0d79913..0fd40d4e6d0f 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -240,17 +240,17 @@ struct scsi_switch *scsi_switch; { if(st_test_ready(unit,SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT)) { - printf("\tst%d: tape present: %d blocks of %d bytes\n", + printf("st%d: tape present: %d blocks of %d bytes\n", unit, st->numblks, st->media_blksiz); } else { - printf("\tst%d: drive empty\n", unit); + printf("st%d: drive empty\n", unit); } } else { - printf("\tst%d: drive offline\n", unit); + printf("st%d: drive offline\n", unit); } /*******************************************************\ * Set up the bufs for this device * @@ -301,7 +301,7 @@ int unit; if (scsi_inquire(st->ctlr, st->targ, st->lu, st->sc_sw, &inqbuf, SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT) != COMPLETE) { - printf(" st%d: couldn't get device type, using default\n", unit); + printf("st%d: couldn't get device type, using default\n", unit); return; } if(inqbuf.ansii_version == 0) @@ -339,7 +339,7 @@ int unit; if ((strcmp(manu, finger->manu) == 0 ) && (strcmp(model2, finger->model) == 0 )) { - printf(" st%d: %s is a known rogue\n", unit,finger->name); + printf("st%d: %s is a known rogue\n", unit,finger->name); st->modes[0] = finger->modes[0]; st->modes[1] = finger->modes[1]; st->modes[2] = finger->modes[2];