diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1998-03-18 00:48:30 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1998-03-18 00:48:30 +0000 |
commit | a195392a7eeae97b391bfa89083be2c3827f589a (patch) | |
tree | 2c69be46dc9a2ba8b9921cae570e94cf72dfc300 /sys/arch/alpha | |
parent | 9e04f95b0e98a309be7b29eb6a020abdd08dd29f (diff) |
BROKEN_PROM_CONSOLE is only defined if SANE_PROM is not defined. The
latter can be defined in a kernel config file.
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/pci/sio_pic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/sio_pic.c b/sys/arch/alpha/pci/sio_pic.c index 84e3b616c19..b92e263e395 100644 --- a/sys/arch/alpha/pci/sio_pic.c +++ b/sys/arch/alpha/pci/sio_pic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio_pic.c,v 1.9 1997/01/24 19:57:59 niklas Exp $ */ +/* $OpenBSD: sio_pic.c,v 1.10 1998/03/18 00:48:29 angelos Exp $ */ /* $NetBSD: sio_pic.c,v 1.16 1996/11/17 02:05:26 cgd Exp $ */ /* @@ -55,7 +55,9 @@ * what will happen if new interrupts (that the PROM console doesn't * want) are turned on. I'll burn that bridge when I come to it. */ +#ifndef SANE_PROM #define BROKEN_PROM_CONSOLE +#endif /* SANE_PROM */ /* * Private functions and variables. |