1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Import v0.0.4alpha of the Stallion driver.

Sumbitted by: Greg Ungerer (gerg@stallion.oz.au)
This commit is contained in:
Peter Wemm 1996-05-04 06:16:23 +00:00
parent 1d0f52d7e4
commit 64b69fe2e7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor/stallion/dist/; revision=15596
svn path=/vendor/stallion/v0_0_4_alpha/; revision=15598; tag=vendor/stallion/v0_0_4_alpha
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)