diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 2001-03-06 09:42:46 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 2001-03-06 09:42:46 +0000 |
| commit | e0db7375bafd66c97e6f73f1d9e655359fe1593e (patch) | |
| tree | 4617aefeb50a10af069f8338545dbe1f0106dad2 /sys/dev | |
| parent | 79cd39f2dd5932d702763b201301eb9a7af52f17 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ata/atapi-cd.c | 2 | ||||
| -rw-r--r-- | sys/dev/ata/atapi-fd.c | 2 | ||||
| -rw-r--r-- | sys/dev/ata/atapi-tape.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ata/atapi-cd.c b/sys/dev/ata/atapi-cd.c index 19db00afa73f..41c922f450d6 100644 --- a/sys/dev/ata/atapi-cd.c +++ b/sys/dev/ata/atapi-cd.c @@ -474,7 +474,7 @@ acd_describe(struct acd_softc *cdp) else sprintf(devnum, "%d", cdp->lun); - printf("acd%s: %s%s <%.40s> at ata%d-%s using %s\n", + printf("acd%s: %s%s <%.40s> at ata%d-%s %s\n", devnum, (cdp->cap.write_dvdr) ? "DVD-R" : (cdp->cap.write_dvdram) ? "DVD-RAM" : (cdp->cap.write_cdrw) ? "CD-RW" : diff --git a/sys/dev/ata/atapi-fd.c b/sys/dev/ata/atapi-fd.c index d702b9736e21..02d817dffe62 100644 --- a/sys/dev/ata/atapi-fd.c +++ b/sys/dev/ata/atapi-fd.c @@ -202,7 +202,7 @@ afd_describe(struct afd_softc *fdp) printf("\n"); } else { - printf("afd%d: %luMB <%.40s> [%d/%d/%d] at ata%d-%s using %s\n", + printf("afd%d: %luMB <%.40s> [%d/%d/%d] at ata%d-%s %s\n", fdp->lun, (fdp->cap.cylinders*fdp->cap.heads*fdp->cap.sectors) / ((1024L * 1024L) / fdp->cap.sector_size), ATA_PARAM(fdp->atp->controller, fdp->atp->unit)->model, diff --git a/sys/dev/ata/atapi-tape.c b/sys/dev/ata/atapi-tape.c index da55714029b1..af3e7af62081 100644 --- a/sys/dev/ata/atapi-tape.c +++ b/sys/dev/ata/atapi-tape.c @@ -234,7 +234,7 @@ ast_describe(struct ast_softc *stp) printf("\n"); } else { - printf("ast%d: TAPE <%.40s> at ata%d-%s using %s\n", + printf("ast%d: TAPE <%.40s> at ata%d-%s %s\n", stp->lun, ATA_PARAM(stp->atp->controller, stp->atp->unit)->model, device_get_unit(stp->atp->controller->dev), (stp->atp->unit == ATA_MASTER) ? "master" : "slave", |
