diff options
author | phk <phk@FreeBSD.org> | 2004-06-04 20:04:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-06-04 20:04:52 +0000 |
commit | 06049d3eaf941ee534b340558daac059b6b18912 (patch) | |
tree | d6e215bcf253e083595c541ae5d094a1d2c280e4 /sys/dev/sio | |
parent | db23e347ebdfd57136333ee5b06a73eb4fe8f2c0 (diff) | |
download | FreeBSD-src-06049d3eaf941ee534b340558daac059b6b18912.zip FreeBSD-src-06049d3eaf941ee534b340558daac059b6b18912.tar.gz |
Manual edits to change linesw[]-frobbing to ttyld_*() calls.
Diffstat (limited to 'sys/dev/sio')
-rw-r--r-- | sys/dev/sio/sio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 6388387..f384e31 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -2163,8 +2163,8 @@ repeat: com->state &= ~CS_CHECKMSR; mtx_unlock_spin(&sio_lock); if (delta_modem_status & MSR_DCD) - (*linesw[tp->t_line].l_modem) - (tp, com->prev_modem_status & MSR_DCD); + ttyld_modem(tp, + com->prev_modem_status & MSR_DCD); } if (com->state & CS_ODONE) { mtx_lock_spin(&sio_lock); |