diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-09 12:52:17 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-09 12:52:17 +0000 |
commit | 5b9e2ad9cf5fa4157205659db959dc1ee47af310 (patch) | |
tree | 02c05897676ad65a921a48a57df44e1ff2d3cd3e /sys/arch/alpha/pci/cia.c | |
parent | 87ae055aed8930ea5d5586c6de68c89850b2c038 (diff) |
Use BWX on cia as much as possible.
It doesn't seem to cause problems anymore and it should simplify some things
for X.
Diffstat (limited to 'sys/arch/alpha/pci/cia.c')
-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; |