PERFORCE change 182431 for review
Hans Petter Selasky
hselasky at FreeBSD.org
Sun Aug 15 17:57:29 UTC 2010
http://p4web.freebsd.org/@@182431?ac=10
Change 182431 by hselasky at hselasky_laptop001 on 2010/08/15 17:57:02
USB serial:
- add possibly missing ttydisc_rint_done() call.
PR: usb/149675
Affected files ...
.. //depot/projects/usb/src/sys/dev/usb/serial/usb_serial.c#20 edit
Differences ...
==== //depot/projects/usb/src/sys/dev/usb/serial/usb_serial.c#20 (text+ko) ====
@@ -985,6 +985,7 @@
DPRINTF("BREAK detected\n");
ttydisc_rint(tp, 0, TRE_BREAK);
+ ttydisc_rint_done(tp);
}
if ((lsr_delta & ULSR_FE) && (sc->sc_lsr & ULSR_FE)) {
@@ -992,6 +993,7 @@
DPRINTF("Frame error detected\n");
ttydisc_rint(tp, 0, TRE_FRAMING);
+ ttydisc_rint_done(tp);
}
if ((lsr_delta & ULSR_PE) && (sc->sc_lsr & ULSR_PE)) {
@@ -999,6 +1001,7 @@
DPRINTF("Parity error detected\n");
ttydisc_rint(tp, 0, TRE_PARITY);
+ ttydisc_rint_done(tp);
}
}
More information about the p4-projects
mailing list