summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/atapi-cd.c
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>1998-10-30 10:57:09 +0000
committerluigi <luigi@FreeBSD.org>1998-10-30 10:57:09 +0000
commitce608fc0aba6562ffe2fdfd1a968111d8306b532 (patch)
tree4bc5666b20d66139bb6749ad37a423cc1b96057b /sys/i386/isa/atapi-cd.c
parent31c8a98d46ace56ccd07e6e55f03a88b933b30a5 (diff)
downloadFreeBSD-src-ce608fc0aba6562ffe2fdfd1a968111d8306b532.zip
FreeBSD-src-ce608fc0aba6562ffe2fdfd1a968111d8306b532.tar.gz
Use "KB" instead of "Kb" for KiloBytes, consistently with other
drivers and common practices.
Diffstat (limited to 'sys/i386/isa/atapi-cd.c')
-rw-r--r--sys/i386/isa/atapi-cd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/isa/atapi-cd.c b/sys/i386/isa/atapi-cd.c
index 62c168c..f63e54e 100644
--- a/sys/i386/isa/atapi-cd.c
+++ b/sys/i386/isa/atapi-cd.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: atapi-cd.c,v 1.2 1998/10/08 06:41:44 sos Exp $
+ * $Id: atapi-cd.c,v 1.3 1998/10/15 08:11:54 sos Exp $
*/
#include "wdc.h"
@@ -262,9 +262,9 @@ acd_describe(struct acd *cdp)
printf("acd%d: drive speed ", cdp->lun);
if (cdp->cap.cur_speed != cdp->cap.max_speed)
printf("%d - ", cdp->cap.cur_speed * 1000 / 1024);
- printf("%dKb/sec", cdp->cap.max_speed * 1000 / 1024);
+ printf("%dKB/sec", cdp->cap.max_speed * 1000 / 1024);
if (cdp->cap.buf_size)
- printf(", %dKb cache\n", cdp->cap.buf_size);
+ printf(", %dKB cache\n", cdp->cap.buf_size);
printf("acd%d: supported read types:", cdp->lun);
comma = 0;
OpenPOWER on IntegriCloud