diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-17 04:30:52 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-17 04:30:52 +0000 |
commit | d471bc85066a41148d5a902c01901d37503aef8e (patch) | |
tree | 5aad893f43fec1ffb45e2e7732cf5e2bbdd7e3fd /sys/dev/ic | |
parent | b63233435dd37169d9c0b9e875ca311a1e4bfd59 (diff) |
Implement cnbell(), an optional entrypoint that rings the console bell; from
NetBSD. deraadt@ ok
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/com.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c index 511b7964abb..b19d23c1956 100644 --- a/sys/dev/ic/com.c +++ b/sys/dev/ic/com.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com.c,v 1.62 2001/03/15 21:09:17 art Exp $ */ +/* $OpenBSD: com.c,v 1.63 2001/04/17 04:30:49 aaron Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /* @@ -1960,7 +1960,7 @@ comcnattach(iot, iobase, rate, frequency, cflag) tcflag_t cflag; { static struct consdev comcons = { - NULL, NULL, comcngetc, comcnputc, comcnpollc, + NULL, NULL, comcngetc, comcnputc, comcnpollc, NULL, NODEV, CN_NORMAL }; |