From c2a1fc3f66e4ca15bc30128587f7414b21c3ca8e Mon Sep 17 00:00:00 2001 From: Daniel Reinhold Date: Sat, 1 Mar 2003 07:22:13 +0000 Subject: [PATCH] removed a macro accidentally re-introduced on the last commit changed the field order in a couple of structs back to their previous ordering git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2856 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/addons/bus_managers/pci/pci.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/kernel/core/addons/bus_managers/pci/pci.c b/src/kernel/core/addons/bus_managers/pci/pci.c index 7667b75f68..7778f312d1 100755 --- a/src/kernel/core/addons/bus_managers/pci/pci.c +++ b/src/kernel/core/addons/bus_managers/pci/pci.c @@ -37,9 +37,9 @@ typedef struct pci_device pci_device; struct pci_device { - pci_info *info; - int type; pci_device *next; + int type; + pci_info *info; }; @@ -49,8 +49,8 @@ struct pci_device { typedef struct pci_bus pci_bus; struct pci_bus { - pci_info *info; pci_bus *next; + pci_info *info; }; @@ -109,7 +109,6 @@ static addr gPCI_BIOS_Address = 0; /* virtual address of memory we map */ #define PCI_PRODUCT_INTEL_82443BX 0x7190 #define PCI_PRODUCT_INTEL_82443BX_AGP 0x7191 #define PCI_PRODUCT_INTEL_82443BX_NOAGP 0x7192 -#define PCI_PRODUCT_INTEL_82845_AGP 0x1a31 /* Config space locking! * We need to make sure we only have one access at a time into the config space,