diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-02-27 12:13:08 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2001-02-27 12:13:08 +0000 |
| commit | 97a994ecca46482806b60f23ad9bc10ff69670f8 (patch) | |
| tree | 6c580852cd6c0544bc5a4cf2b1dca6becf5e07f1 | |
| parent | 376226a4c1b9ecf3761230c917da3b99ebb6f254 (diff) | |
Notes
| -rw-r--r-- | sys/pc98/pc98/sio.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pc98/pc98/sio.c b/sys/pc98/pc98/sio.c index 3fa6987e4ed4..66f8ce034f27 100644 --- a/sys/pc98/pc98/sio.c +++ b/sys/pc98/pc98/sio.c @@ -520,8 +520,9 @@ static struct cdevsw sio_cdevsw = { /* maj */ CDEV_MAJOR, /* dump */ nodump, /* psize */ nopsize, - /* flags */ D_TTY, - /* bmaj */ -1 + /* flags */ D_TTY | D_KQFILTER, + /* bmaj */ -1, + /* kqfilter */ ttykqfilter, }; int comconsole = -1; |
