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/arch/mvme88k | |
parent | b63233435dd37169d9c0b9e875ca311a1e4bfd59 (diff) |
Implement cnbell(), an optional entrypoint that rings the console bell; from
NetBSD. deraadt@ ok
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c index a740ed5317f..f35866f44a7 100644 --- a/sys/arch/mvme88k/mvme88k/machdep.c +++ b/sys/arch/mvme88k/mvme88k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.30 2001/03/16 00:08:28 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.31 2001/04/17 04:30:47 aaron Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -292,7 +292,7 @@ static struct consdev bootcons = { (void (*))NULL, bootcngetc, (void (*))bootcnputc, - bootcnpollc, makedev(14,0), 1}; + bootcnpollc, NULL, makedev(14,0), 1}; void cmmu_init(void); /* * Console initialization: called early on from main, |