diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-27 19:31:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-27 19:31:45 +0000 |
commit | 30d8e2d9eb115d129bbf776a5861f20d9ca37c53 (patch) | |
tree | e7c34955015f14585a7a9ad462dbbd82b64f89db /sys/dev/usb/ucom.c | |
parent | a15426ecd54ac6bd38f84c977ce6e8dd09f7d5cf (diff) |
2 lines of code in most drivers, to do the timestamping; ok miod kettenis
Diffstat (limited to 'sys/dev/usb/ucom.c')
-rw-r--r-- | sys/dev/usb/ucom.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 8078e29714c..d67600d2c7f 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ucom.c,v 1.28 2006/03/27 08:19:39 dlg Exp $ */ +/* $OpenBSD: ucom.c,v 1.29 2006/04/27 19:31:44 deraadt Exp $ */ /* $NetBSD: ucom.c,v 1.49 2003/01/01 00:10:25 thorpej Exp $ */ /* @@ -785,6 +785,10 @@ ucom_status_change(struct ucom_softc *sc) old_msr = sc->sc_msr; sc->sc_methods->ucom_get_status(sc->sc_parent, sc->sc_portno, &sc->sc_lsr, &sc->sc_msr); + + ttytstamp(tp, old_msr & UMSR_CTS, sc->sc_msr & UMSR_CTS, + old_msr & UMSR_DCD, sc->sc_msr & UMSR_DCD); + if (ISSET((sc->sc_msr ^ old_msr), UMSR_DCD)) (*LINESW(tp, l_modem))(tp, ISSET(sc->sc_msr, UMSR_DCD)); |