diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-07-03 18:11:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-07-03 18:11:53 +0000 |
commit | d760db0391c019cfefa3dbcfb54d438a8ba88d0d (patch) | |
tree | 708237f0a89d9066ab1443c2771b5cc06adda733 /sys | |
parent | 9f14177e203e926bfe0b3778871ec6fb75c3ece1 (diff) |
wsdisplay should use wsdisplaypoll not ttpoll.
ok miod deraadt
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/conf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 0e9a329b458..1cdbb8d1e60 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.111 2011/06/27 04:57:36 matthew Exp $ */ +/* $OpenBSD: conf.h,v 1.112 2011/07/03 18:11:52 nicm Exp $ */ /* $NetBSD: conf.h,v 1.33 1996/05/03 20:03:32 christos Exp $ */ /*- @@ -382,7 +382,7 @@ extern struct cdevsw cdevsw[]; #define cdev_wsdisplay_init(c,n) { \ dev_init(c,n,open), dev_init(c,n,close), dev_init(c,n,read), \ dev_init(c,n,write), dev_init(c,n,ioctl), dev_init(c,n,stop), \ - dev_init(c,n,tty), ttpoll, dev_init(c,n,mmap), \ + dev_init(c,n,tty), dev_init(c,n,poll), dev_init(c,n,mmap), \ 0, D_KQFILTER, dev_init(c,n,kqfilter) } /* open, close, read, write, ioctl, poll, kqfilter */ |