diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-07-15 20:47:41 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-07-15 20:47:41 +0000 |
| commit | 672c05d49c9565187ba43fd37c632fd5960c04b5 (patch) | |
| tree | cb8932d8c884d3a6cc8f7e0616a4bdfa7fe0e5ee /sys/dev/syscons | |
| parent | e65b8f47b37d55056175640b70f210b763a29f00 (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons')
| -rw-r--r-- | sys/dev/syscons/syscons.c | 2 | ||||
| -rw-r--r-- | sys/dev/syscons/sysmouse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 2620ea715abc..669c25673d79 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -557,7 +557,7 @@ scclose(struct cdev *dev, int flag, int mode, struct thread *td) } spltty(); ttyld_close(tp, flag); - ttyclose(tp); + tty_close(tp); spl0(); return(0); } diff --git a/sys/dev/syscons/sysmouse.c b/sys/dev/syscons/sysmouse.c index db2487d11f65..ce8fe1207902 100644 --- a/sys/dev/syscons/sysmouse.c +++ b/sys/dev/syscons/sysmouse.c @@ -110,7 +110,7 @@ smclose(struct cdev *dev, int flag, int mode, struct thread *td) s = spltty(); mouse_level = 0; ttyld_close(tp, flag); - ttyclose(tp); + tty_close(tp); splx(s); return 0; |
