diff options
author | jkh <jkh@FreeBSD.org> | 1994-11-08 02:53:42 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-11-08 02:53:42 +0000 |
commit | 61954bb4fe9a68311d45197942eb7587b59af129 (patch) | |
tree | 0851a209e7118ba054aadbddd30e9c7d328d3f92 | |
parent | b8b4dd99e05415ceae549f01349d52aff0a4dbd7 (diff) | |
download | FreeBSD-src-61954bb4fe9a68311d45197942eb7587b59af129.zip FreeBSD-src-61954bb4fe9a68311d45197942eb7587b59af129.tar.gz |
I noticed some weird english had crept in - fix it up a bit.
-rw-r--r-- | sys/i386/isa/bt742a.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/i386/isa/bt742a.c b/sys/i386/isa/bt742a.c index 72585b7..bf8b97e 100644 --- a/sys/i386/isa/bt742a.c +++ b/sys/i386/isa/bt742a.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: bt742a.c,v 1.28 1994/10/17 21:16:35 phk Exp $ + * $Id: bt742a.c,v 1.29 1994/10/23 21:27:10 wollman Exp $ */ /* @@ -1147,13 +1147,12 @@ bt_init(unit) } if ( binfo.id[0] == '5' ) { printf("bt%d: This driver is designed for using 32 bit addressing\n",unit); - printf("bt%d: mode firmware and EISA/PCI/VLB bus architecture bus\n",unit); - printf("bt%d: WITHOUT any software trick/overhead (i.e.bounce buffer).\n",unit); - printf("bt%d: If you have more than 16MBytes memory\n",unit); - printf("bt%d: your filesystem will get a serious damage.\n",unit); + printf("bt%d: mode firmware and EISA/PCI/VLB bus architectures\n",unit); + printf("bt%d: Bounce-buffering will be used (and is necessary)\n", unit); + printf("bt%d: if you have more than 16MBytes memory.\n",unit); } else if ( info.bus_type == BT_BUS_TYPE_24bit ) { printf("bt%d: Your board should report a 32bit bus architecture type..\n",unit); - printf("bt%d: A firmware on your board may have a problem with over\n",unit); + printf("bt%d: The firmware on your board may have a problem with over\n",unit); printf("bt%d: 16MBytes memory handling with this driver.\n",unit); } |