aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/syscons.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-09-14 03:19:42 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-09-14 03:19:42 +0000
commit35b8b2ddab5ea905ea69b7502570b2d57d58d21a (patch)
tree690921950f0a7be0eec5e54ec388838cdd76d271 /sys/isa/syscons.c
parentea8ef05f7ef47f04b00beaa5ce5e290fc982393c (diff)
Update select -> poll in drivers.
Notes
Notes: svn path=/head/; revision=29368
Diffstat (limited to 'sys/isa/syscons.c')
-rw-r--r--sys/isa/syscons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c
index 25bf83153510..d9fe63417d5e 100644
--- a/sys/isa/syscons.c
+++ b/sys/isa/syscons.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.230 1997/08/09 19:24:03 sos Exp $
+ * $Id: syscons.c,v 1.231 1997/09/04 23:01:03 yokota Exp $
*/
#include "sc.h"
@@ -250,7 +250,7 @@ static d_mmap_t scmmap;
static struct cdevsw scdevsw = {
scopen, scclose, scread, scwrite,
scioctl, nullstop, noreset, scdevtotty,
- ttselect, scmmap, nostrategy, "sc", NULL, -1 };
+ ttpoll, scmmap, nostrategy, "sc", NULL, -1 };
/*
* These functions need to be before calls to them so they can be inlined.