diff options
author | 2002-07-09 12:52:16 +0000 | |
---|---|---|
committer | 2002-07-09 12:52:16 +0000 | |
commit | cc5b3ea38553f76dd2537fa052b9ed0c6ddf08d6 (patch) | |
tree | fe6e0695f26331bed4464ce68eb3f74b84cc3ff4 | |
parent | ed static function (less warnings) (diff) | |
download | wireguard-openbsd-cc5b3ea38553f76dd2537fa052b9ed0c6ddf08d6.tar.xz wireguard-openbsd-cc5b3ea38553f76dd2537fa052b9ed0c6ddf08d6.zip |
Use BWX on cia as much as possible.
It doesn't seem to cause problems anymore and it should simplify some things
for X.
-rw-r--r-- | sys/arch/alpha/pci/cia.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/cia.c b/sys/arch/alpha/pci/cia.c index 91faa80af0e..9958066775f 100644 --- a/sys/arch/alpha/pci/cia.c +++ b/sys/arch/alpha/pci/cia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cia.c,v 1.18 2002/03/14 01:26:27 millert Exp $ */ +/* $OpenBSD: cia.c,v 1.19 2002/07/09 12:52:16 art Exp $ */ /* $NetBSD: cia.c,v 1.56 2000/06/29 08:58:45 mrg Exp $ */ /*- @@ -136,11 +136,11 @@ struct cia_config cia_configuration; #endif #ifndef CIA_BUS_USE_BWX -#define CIA_BUS_USE_BWX 0 +#define CIA_BUS_USE_BWX 1 #endif #ifndef CIA_PYXIS_FORCE_BWX -#define CIA_PYXIS_FORCE_BWX 0 +#define CIA_PYXIS_FORCE_BWX 1 #endif int cia_pci_use_bwx = CIA_PCI_USE_BWX; |