Date: Sun, 23 Dec 2001 08:51:56 -0800 (PST) From: David Wolfskill <david@catwhisker.org> To: current@freebsd.org Subject: Minimal patch for -CURRENT to build Message-ID: <200112231651.fBNGpu360606@bunrab.catwhisker.org>
next in thread | raw e-mail | index | archive | help
Please note that I am taking no position regarding whether Matt's sio changes should remain or be backed out. That said, the following was the minimal change I found necessary to get today's -CURRENT to build: Index: sio.c =================================================================== RCS file: /cvs/freebsd/src/sys/dev/sio/sio.c,v retrieving revision 1.356 diff -u -r1.356 sio.c --- sio.c 23 Dec 2001 02:48:25 -0000 1.356 +++ sio.c 23 Dec 2001 16:24:20 -0000 @@ -2168,7 +2168,7 @@ * without producing silo overflow errors. */ com->fifo_image = t->c_ospeed <= 4800 - ? FIFO_ENABLE : FIFO_ENABLE | FIFO_RX_MEDHI; + ? FIFO_ENABLE : FIFO_ENABLE | FIFO_RX_MEDH; #ifdef COM_ESP /* * The Hayes ESP card needs the fifo DMA mode bit set Cheers, david -- David H. Wolfskill david@catwhisker.org I believe it would be irresponsible (and thus, unethical) for me to advise, recommend, or support the use of any product that is or depends on any Microsoft product for any purpose other than personal amusement. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200112231651.fBNGpu360606>