aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/uart/uart_core.c
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2006-02-24 05:40:17 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2006-02-24 05:40:17 +0000
commitea54941449f91ed73a68a06ddb41716fdf5a4a5a (patch)
tree1a5d674c76a9410a6917b62d08fd0cbedc3c5157 /sys/dev/uart/uart_core.c
parent0bb90c9d57396af95bc51ca291b309c835c9a8fa (diff)
downloadsrc-ea54941449f91ed73a68a06ddb41716fdf5a4a5a.tar.gz
src-ea54941449f91ed73a68a06ddb41716fdf5a4a5a.zip
Replace our local UART_SIGMASK_* with the global SER_MASK_*.
Notes
Notes: svn path=/head/; revision=155973
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 c69243ae5e91..9e4a06d67bf8 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));