summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2006-07-27 00:07:10 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2006-07-27 00:07:10 +0000
commitdd5b096f428da177f55119248356fa6811f3090f (patch)
tree68edd8e1ee04350801af1da1bc8916ee3ece9a99
parenta4eb85b6acb49cb60c72c2cab0d0d3f00eaa6d46 (diff)
Notes
-rw-r--r--sys/dev/uart/uart_tty.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/uart/uart_tty.c b/sys/dev/uart/uart_tty.c
index b54c94ad483d..1971049ce43a 100644
--- a/sys/dev/uart/uart_tty.c
+++ b/sys/dev/uart/uart_tty.c
@@ -313,6 +313,8 @@ uart_tty_intr(void *arg)
c = xc & 0xff;
if (xc & UART_STAT_FRAMERR)
c |= TTY_FE;
+ if (xc & UART_STAT_OVERRUN)
+ c |= TTY_OE;
if (xc & UART_STAT_PARERR)
c |= TTY_PE;
ttyld_rint(tp, c);