diff options
author | 1998-03-18 00:48:29 +0000 | |
---|---|---|
committer | 1998-03-18 00:48:29 +0000 | |
commit | 2717ea5e81273e8bd3acb2df63d21998e1fea204 (patch) | |
tree | 0726090228368fe9b0a71f6b47ccf5a6dd23bca4 | |
parent | Todd does not test YP code; felix@mamba.pond.sub.org (diff) | |
download | wireguard-openbsd-2717ea5e81273e8bd3acb2df63d21998e1fea204.tar.xz wireguard-openbsd-2717ea5e81273e8bd3acb2df63d21998e1fea204.zip |
BROKEN_PROM_CONSOLE is only defined if SANE_PROM is not defined. The
latter can be defined in a kernel config file.
-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. |