diff options
author | se <se@FreeBSD.org> | 1996-06-13 21:50:41 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1996-06-13 21:50:41 +0000 |
commit | 23133f9662e001a9cf11d37629d4557047e4b9cc (patch) | |
tree | 0a8cf68e88aa61154d6a66b4a5be9900d498cdbe /sys/amd64/pci | |
parent | 32277d9773346c2da6e585898d259fa3cd9e5314 (diff) | |
download | FreeBSD-src-23133f9662e001a9cf11d37629d4557047e4b9cc.zip FreeBSD-src-23133f9662e001a9cf11d37629d4557047e4b9cc.tar.gz |
Change CONF1_ENABLE_MSK to 0x7ff00000 in another attempt to decide
whether a system could possibly support PCI configuration mechanism 1
(or whether it rather is an EISA only system ...).
Diffstat (limited to 'sys/amd64/pci')
-rw-r--r-- | sys/amd64/pci/pci_bus.c | 4 | ||||
-rw-r--r-- | sys/amd64/pci/pci_cfgreg.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/pci/pci_bus.c b/sys/amd64/pci/pci_bus.c index a93a3e1..ac9cfc5 100644 --- a/sys/amd64/pci/pci_bus.c +++ b/sys/amd64/pci/pci_bus.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcibus.c,v 1.23 1996/04/07 17:32:15 bde Exp $ +** $Id: pcibus.c,v 1.24 1996/04/30 21:37:21 se Exp $ ** ** pci bus subroutines for i386 architecture. ** @@ -146,7 +146,7 @@ DATA_SET (pcibus_set, i386pci); #define CONF1_ENABLE 0x80000000ul #define CONF1_ENABLE_CHK 0x80000000ul -#define CONF1_ENABLE_MSK 0x00ff0700ul +#define CONF1_ENABLE_MSK 0x7ff00000ul #define CONF1_ENABLE_CHK1 0xff000001ul #define CONF1_ENABLE_MSK1 0x80000001ul #define CONF1_ENABLE_RES1 0x80000000ul diff --git a/sys/amd64/pci/pci_cfgreg.c b/sys/amd64/pci/pci_cfgreg.c index a93a3e1..ac9cfc5 100644 --- a/sys/amd64/pci/pci_cfgreg.c +++ b/sys/amd64/pci/pci_cfgreg.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcibus.c,v 1.23 1996/04/07 17:32:15 bde Exp $ +** $Id: pcibus.c,v 1.24 1996/04/30 21:37:21 se Exp $ ** ** pci bus subroutines for i386 architecture. ** @@ -146,7 +146,7 @@ DATA_SET (pcibus_set, i386pci); #define CONF1_ENABLE 0x80000000ul #define CONF1_ENABLE_CHK 0x80000000ul -#define CONF1_ENABLE_MSK 0x00ff0700ul +#define CONF1_ENABLE_MSK 0x7ff00000ul #define CONF1_ENABLE_CHK1 0xff000001ul #define CONF1_ENABLE_MSK1 0x80000001ul #define CONF1_ENABLE_RES1 0x80000000ul |