summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1993-08-06 12:11:52 +0000
committerrgrimes <rgrimes@FreeBSD.org>1993-08-06 12:11:52 +0000
commit13366311d630dc9fe6b9b7e225f1e2e99434a7ed (patch)
treebcd5263dfd6eb56c880261aa6f444029d99907d3 /sys/scsi
parentbed38c22db4a32680ee29f5bbfb526718ebfea6b (diff)
downloadFreeBSD-src-13366311d630dc9fe6b9b7e225f1e2e99434a7ed.zip
FreeBSD-src-13366311d630dc9fe6b9b7e225f1e2e99434a7ed.tar.gz
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.
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/cd.c4
-rw-r--r--sys/scsi/sd.c4
-rw-r--r--sys/scsi/st.c10
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c
index a66a0f1..538c9e1 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 8894fb8..fda382b 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 b85da0d7..0fd40d4 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];
OpenPOWER on IntegriCloud