summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2015-03-07 22:46:35 +0000
committerhselasky <hselasky@FreeBSD.org>2015-03-07 22:46:35 +0000
commit9dfee49675cefb94eb29a042c1164e7549123fc5 (patch)
tree24c524ec11b9cb6fbd87be92befe4c6448faec23
parenta8297742d947c4843fb887d9f2bdd39476610154 (diff)
downloadFreeBSD-src-9dfee49675cefb94eb29a042c1164e7549123fc5.zip
FreeBSD-src-9dfee49675cefb94eb29a042c1164e7549123fc5.tar.gz
Use correct mode variable for PPS support.
PR: 196897 Submitted by: ian @ MFC after: 1 week
-rw-r--r--sys/dev/usb/serial/usb_serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/serial/usb_serial.c b/sys/dev/usb/serial/usb_serial.c
index 8ac15a0..bb641ef 100644
--- a/sys/dev/usb/serial/usb_serial.c
+++ b/sys/dev/usb/serial/usb_serial.c
@@ -1105,7 +1105,7 @@ ucom_cfg_status_change(struct usb_proc_msg *_task)
/* time pulse counting support */
switch(ucom_pps_mode) {
case 1:
- if ((sc->sc_pps.ppscap & PPS_CAPTUREBOTH) &&
+ if ((sc->sc_pps.ppsparam.mode & PPS_CAPTUREBOTH) &&
(msr_delta & SER_CTS)) {
pps_capture(&sc->sc_pps);
pps_event(&sc->sc_pps, (sc->sc_msr & SER_CTS) ?
@@ -1113,7 +1113,7 @@ ucom_cfg_status_change(struct usb_proc_msg *_task)
}
break;
case 2:
- if ((sc->sc_pps.ppscap & PPS_CAPTUREBOTH) &&
+ if ((sc->sc_pps.ppsparam.mode & PPS_CAPTUREBOTH) &&
(msr_delta & SER_DCD)) {
pps_capture(&sc->sc_pps);
pps_event(&sc->sc_pps, (sc->sc_msr & SER_DCD) ?
OpenPOWER on IntegriCloud