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.
This commit is contained in:
Rodney W. Grimes
1993-08-06 12:11:52 +00:00
parent 2ea3f75bd2
commit 903a4691a3
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
* functioning of this software in any circumstances. * 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 * 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) 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); return(0);
} }
/*******************************************************\ /*******************************************************\
+2 -2
View File
@@ -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 * 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. * * request must specify this. *
\*******************************************************/ \*******************************************************/
sd_get_parms(unit, SCSI_NOSLEEP | SCSI_NOMASK); 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, unit,
( dp->cyls ( dp->cyls
* dp->heads * dp->heads
+5 -5
View File
@@ -240,17 +240,17 @@ struct scsi_switch *scsi_switch;
{ {
if(st_test_ready(unit,SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT)) 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); unit, st->numblks, st->media_blksiz);
} }
else else
{ {
printf("\tst%d: drive empty\n", unit); printf("st%d: drive empty\n", unit);
} }
} }
else else
{ {
printf("\tst%d: drive offline\n", unit); printf("st%d: drive offline\n", unit);
} }
/*******************************************************\ /*******************************************************\
* Set up the bufs for this device * * 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, if (scsi_inquire(st->ctlr, st->targ, st->lu, st->sc_sw, &inqbuf,
SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT) != COMPLETE) 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; return;
} }
if(inqbuf.ansii_version == 0) if(inqbuf.ansii_version == 0)
@@ -339,7 +339,7 @@ int unit;
if ((strcmp(manu, finger->manu) == 0 ) if ((strcmp(manu, finger->manu) == 0 )
&& (strcmp(model2, finger->model) == 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[0] = finger->modes[0];
st->modes[1] = finger->modes[1]; st->modes[1] = finger->modes[1];
st->modes[2] = finger->modes[2]; st->modes[2] = finger->modes[2];