diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-07 11:49:16 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-08-07 11:49:16 +0000 |
commit | dde335970afe9fd96349ec54cbd0e0581bfe3d1a (patch) | |
tree | 2836272aca0160d57a7880e1e7452ee8199f1d01 | |
parent | a78192d454ff36dab0f23af0bcd3c1d4a3349b05 (diff) |
grammar & spelling
-rw-r--r-- | sys/arch/i386/stand/libsa/biosdev.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/biosdev.c b/sys/arch/i386/stand/libsa/biosdev.c index 154466a05f7..89dcb9e9cb4 100644 --- a/sys/arch/i386/stand/libsa/biosdev.c +++ b/sys/arch/i386/stand/libsa/biosdev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: biosdev.c,v 1.21 1997/08/06 18:49:14 mickey Exp $ */ +/* $OpenBSD: biosdev.c,v 1.22 1997/08/07 11:49:15 niklas Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -137,12 +137,12 @@ biosopen(struct open_file *f, ...) case 6: /* cd */ case 18: /* acd */ #ifdef DEBUG - printf("no any CD supported at this time\n"); + printf("Booting from CD is not yet supported\n"); #endif case 3: /* wt */ #ifdef DEBUG if (maj == 3) - printf("Wangtek is unsupported\n"); + printf("Booting from Wangtek is not supported\n"); #endif default: free(bd, 0); @@ -328,8 +328,10 @@ biosstrategy(void *devdata, int rw, /* use a bounce buffer to not cross 64k DMA boundary */ if ((((u_int32_t)buf) & ~0xffff) != (((u_int32_t)buf + n * DEV_BSIZE) & ~0xffff)) { - /* XXX we beleive that all the io is buffered - by fs routines, so no big reads anyway */ + /* + * XXX we believe that all the io is buffered + * by fs routines, so no big reads anyway + */ bb = alloca(n * DEV_BSIZE); if (rw != F_READ) bcopy (buf, bb, n * DEV_BSIZE); |