summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/stallion.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-05-04 06:16:23 +0000
committerpeter <peter@FreeBSD.org>1996-05-04 06:16:23 +0000
commite8571341bd248c98e240ab19c58f10213c0e351b (patch)
tree8a55b89a2ab63d1ccc601ca048b2d7d74f9ce1bf /sys/i386/isa/stallion.c
parentb200fe400c41fa4c3b0962412950112c37be1a2a (diff)
downloadFreeBSD-src-e8571341bd248c98e240ab19c58f10213c0e351b.zip
FreeBSD-src-e8571341bd248c98e240ab19c58f10213c0e351b.tar.gz
Import v0.0.4alpha of the Stallion driver.
Sumbitted by: Greg Ungerer (gerg@stallion.oz.au)
Diffstat (limited to 'sys/i386/isa/stallion.c')
-rw-r--r--sys/i386/isa/stallion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/stallion.c b/sys/i386/isa/stallion.c
index 68c2683..e9f0594 100644
--- a/sys/i386/isa/stallion.c
+++ b/sys/i386/isa/stallion.c
@@ -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)
OpenPOWER on IntegriCloud