diff options
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/cy/cy.c | 2 | ||||
| -rw-r--r-- | sys/dev/cy/cy_isa.c | 2 | ||||
| -rw-r--r-- | sys/dev/dgb/dgb.c | 2 | ||||
| -rw-r--r-- | sys/dev/digi/digi.c | 2 | ||||
| -rw-r--r-- | sys/dev/rc/rc.c | 2 | ||||
| -rw-r--r-- | sys/dev/sab/sab.c | 2 | ||||
| -rw-r--r-- | sys/dev/si/si.c | 2 | ||||
| -rw-r--r-- | sys/dev/sio/sio.c | 2 | ||||
| -rw-r--r-- | sys/dev/syscons/syscons.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/ucom.c | 2 | ||||
| -rw-r--r-- | sys/dev/zs/zs.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c index 53ea3bccd656d..4e2e499da1a6b 100644 --- a/sys/dev/cy/cy.c +++ b/sys/dev/cy/cy.c @@ -405,7 +405,7 @@ static struct cdevsw sio_cdevsw = { .d_poll = ttypoll, .d_name = driver_name, .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index 53ea3bccd656d..4e2e499da1a6b 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -405,7 +405,7 @@ static struct cdevsw sio_cdevsw = { .d_poll = ttypoll, .d_name = driver_name, .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c index b702297f79213..e77e2f1ca1966 100644 --- a/sys/dev/dgb/dgb.c +++ b/sys/dev/dgb/dgb.c @@ -250,7 +250,7 @@ static struct cdevsw dgb_cdevsw = { .d_poll = ttypoll, .d_name = "dgb", .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/digi/digi.c b/sys/dev/digi/digi.c index 42c1b1ce4a6ec..22f1b2eb7355b 100644 --- a/sys/dev/digi/digi.c +++ b/sys/dev/digi/digi.c @@ -151,7 +151,7 @@ static struct cdevsw digi_sw = { .d_poll = ttypoll, .d_name = driver_name, .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter }; diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c index eb023d8ba38e9..07c0c5b913c79 100644 --- a/sys/dev/rc/rc.c +++ b/sys/dev/rc/rc.c @@ -154,7 +154,7 @@ static struct cdevsw rc_cdevsw = { .d_poll = ttypoll, .d_name = "rc", .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/sab/sab.c b/sys/dev/sab/sab.c index 56fd6ea7b801b..362e8b72a354e 100644 --- a/sys/dev/sab/sab.c +++ b/sys/dev/sab/sab.c @@ -168,7 +168,7 @@ static struct cdevsw sabtty_cdevsw = { .d_poll = ttypoll, .d_name = "sabtty", .d_maj = MAJOR_AUTO, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index ef37bfdd675c6..d96266ce069eb 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -124,7 +124,7 @@ static struct cdevsw si_cdevsw = { .d_poll = ttypoll, .d_name = "si", .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 9f28b32199db4..b3d8d21a78e7f 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -322,7 +322,7 @@ static struct cdevsw sio_cdevsw = { .d_poll = ttypoll, .d_name = sio_driver_name, .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 1cf572b325173..b6b8e6b0f2e3e 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -221,7 +221,7 @@ static struct cdevsw sc_cdevsw = { .d_mmap = scmmap, .d_name = "sc", .d_maj = CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter }; diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 5409913aaeff6..c25bc39e32686 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -136,7 +136,7 @@ static struct cdevsw ucom_cdevsw = { .d_poll = ttypoll, .d_name = "ucom", .d_maj = UCOM_CDEV_MAJOR, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, #if __FreeBSD_version < 500014 /* bmaj */ -1, #endif diff --git a/sys/dev/zs/zs.c b/sys/dev/zs/zs.c index 9ee3cdf3cf938..d901e10501f16 100644 --- a/sys/dev/zs/zs.c +++ b/sys/dev/zs/zs.c @@ -158,7 +158,7 @@ static struct cdevsw zstty_cdevsw = { .d_poll = ttypoll, .d_name = "zstty", .d_maj = MAJOR_AUTO, - .d_flags = D_TTY | D_KQFILTER, + .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; |
