This commit was generated by cvs2svn to compensate for changes in r15596,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Peter Wemm 1996-05-04 06:16:23 +00:00
commit 53f25a7bd9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15597
2 changed files with 5 additions and 4 deletions

View File

@ -2,8 +2,8 @@
Stallion Multiport Serial Driver Readme
---------------------------------------
Version: 0.0.3 alpha
Date: 05FEB96
Version: 0.0.4 alpha
Date: 06FEB96
Author: Greg Ungerer (gerg@stallion.oz.au)
@ -240,6 +240,7 @@ Having said that, I have used it on at least the following types of "things"
under FreeBSD:
a) standard dumb terminals (using getty)
b) modems (using cu, etc)
c) ppp (through pppd, kernel ppp)

View File

@ -140,7 +140,7 @@ static unsigned int stl_irqshared = 0;
*/
static char *stl_drvname = "stl";
static char *stl_longdrvname = "Stallion Multiport Serial Driver";
static char *stl_drvversion = "0.0.3";
static char *stl_drvversion = "0.0.4";
static int stl_brdprobed[STL_MAXBRDS];
static int stl_nrbrds = 0;
@ -2027,7 +2027,7 @@ static void stl_rxprocess(stlport_t *portp)
}
} else {
while (portp->rx.tail != head) {
ch = *(portp->rx.tail);
ch = (unsigned char) *(portp->rx.tail);
if (status = *(portp->rx.tail + STL_RXBUFSIZE)) {
*(portp->rx.tail + STL_RXBUFSIZE) = 0;
if (status & ST_BREAK)