diff options
| author | bouyer <bouyer@NetBSD.org> | 2006-11-22 17:51:02 +0000 |
|---|---|---|
| committer | bouyer <bouyer@NetBSD.org> | 2006-11-22 17:51:02 +0000 |
| commit | 6c04cd11cb8b500d23c9458c023d544a7998e167 (patch) | |
| tree | 0358368c45450fc65775a0d6a326c9c2e4074449 /sys/dev/ata/sata_subr.c | |
| parent | dcf3bce253a64569163115ea225304fa03e9b43f (diff) | |
Cosmetic: remove one ":" from the port status string, it looks better this
way.
Diffstat (limited to 'sys/dev/ata/sata_subr.c')
| -rw-r--r-- | sys/dev/ata/sata_subr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ata/sata_subr.c b/sys/dev/ata/sata_subr.c index 7767ff858f3..c1a6b3a0e38 100644 --- a/sys/dev/ata/sata_subr.c +++ b/sys/dev/ata/sata_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: sata_subr.c,v 1.4 2006/11/22 17:49:12 bouyer Exp $ */ +/* $NetBSD: sata_subr.c,v 1.5 2006/11/22 17:51:02 bouyer Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -117,23 +117,23 @@ sata_reset_interface(struct ata_channel *chp, bus_space_tag_t sata_t, break; case SStatus_DET_DEV_NE: - aprint_error("%s: port %d: device connected, but " + aprint_error("%s port %d: device connected, but " "communication not established\n", chp->ch_atac->atac_dev.dv_xname, chp->ch_channel); break; case SStatus_DET_OFFLINE: - aprint_error("%s: port %d: PHY offline\n", + aprint_error("%s port %d: PHY offline\n", chp->ch_atac->atac_dev.dv_xname, chp->ch_channel); break; case SStatus_DET_DEV: - aprint_normal("%s: port %d: device present, speed: %s\n", + aprint_normal("%s port %d: device present, speed: %s\n", chp->ch_atac->atac_dev.dv_xname, chp->ch_channel, sata_speed(sstatus)); break; default: - aprint_error("%s: port %d: unknown SStatus: 0x%08x\n", + aprint_error("%s port %d: unknown SStatus: 0x%08x\n", chp->ch_atac->atac_dev.dv_xname, chp->ch_channel, sstatus); } |
