summaryrefslogtreecommitdiffstats
path: root/sys/dev/uart/uart_core.c
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2006-02-24 05:40:17 +0000
committermarcel <marcel@FreeBSD.org>2006-02-24 05:40:17 +0000
commit59ae2faccd91f17ab74d868429b95e97a60e7acc (patch)
tree1a5d674c76a9410a6917b62d08fd0cbedc3c5157 /sys/dev/uart/uart_core.c
parent72c66eec8feb4ebace76e9e6e0cfc0c66b0e1425 (diff)
downloadFreeBSD-src-59ae2faccd91f17ab74d868429b95e97a60e7acc.zip
FreeBSD-src-59ae2faccd91f17ab74d868429b95e97a60e7acc.tar.gz
Replace our local UART_SIGMASK_* with the global SER_MASK_*.
Diffstat (limited to 'sys/dev/uart/uart_core.c')
-rw-r--r--sys/dev/uart/uart_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/uart/uart_core.c b/sys/dev/uart/uart_core.c
index c69243a..9e4a06d 100644
--- a/sys/dev/uart/uart_core.c
+++ b/sys/dev/uart/uart_core.c
@@ -171,7 +171,7 @@ uart_intr_sigchg(struct uart_softc *sc)
do {
old = sc->sc_ttypend;
- new = old & ~UART_SIGMASK_STATE;
+ new = old & ~SER_MASK_STATE;
new |= sig & SER_INT_SIGMASK;
new |= SER_INT_SIGCHG;
} while (!atomic_cmpset_32(&sc->sc_ttypend, old, new));
OpenPOWER on IntegriCloud