diff options
author | phk <phk@FreeBSD.org> | 2004-07-15 20:47:41 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-07-15 20:47:41 +0000 |
commit | f00200d8a459bcf01e832c89518247e88ce28bf0 (patch) | |
tree | cb8932d8c884d3a6cc8f7e0616a4bdfa7fe0e5ee /sys/dev/cx/if_cx.c | |
parent | 2f3742942cca7902c160ba9f75eae9a92e905e0f (diff) | |
download | FreeBSD-src-f00200d8a459bcf01e832c89518247e88ce28bf0.zip FreeBSD-src-f00200d8a459bcf01e832c89518247e88ce28bf0.tar.gz |
Preparation commit for the tty cleanups that will follow in the near
future:
rename ttyopen() -> tty_open() and ttyclose() -> tty_close().
We need the ttyopen() and ttyclose() for the new generic cdevsw
functions for tty devices in order to have consistent naming.
Diffstat (limited to 'sys/dev/cx/if_cx.c')
-rw-r--r-- | sys/dev/cx/if_cx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c index c2b877d..638e947 100644 --- a/sys/dev/cx/if_cx.c +++ b/sys/dev/cx/if_cx.c @@ -1640,7 +1640,7 @@ static int cx_close (struct cdev *dev, int flag, int mode, struct thread *td) cx_set_rts (d->chan, 0); ttydtrwaitstart(d->tty); } - ttyclose (d->tty); + tty_close (d->tty); splx (s); d->callout = 0; |