]> Zhao Yanbai Git Server - minix.git/commitdiff
Disabled pci_intel_ctrl.
authorPhilip Homburg <philip@cs.vu.nl>
Tue, 7 Mar 2006 14:14:53 +0000 (14:14 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Tue, 7 Mar 2006 14:14:53 +0000 (14:14 +0000)
drivers/pci/pci.c
drivers/pci/pci.h
drivers/pci/pci_table.c

index 00a96b4f8b30404d95bd40ea6afdd27d0d14ce63..2b420c669221a3d6cdc90e42b3374c413bb7bd4b 100644 (file)
@@ -555,8 +555,7 @@ PRIVATE void pci_intel_init()
        /* Try to detect a know PCI controller. Read the Vendor ID and
         * the Device ID for function 0 of device 0.
         * Two times the value 0xffff suggests a system without a (compatible)
-        * PCI controller. Only controllers with values listed in the table
-        * pci_intel_ctrl are actually used.
+        * PCI controller. 
         */
        u32_t bus, dev, func;
        u16_t vid, did;
@@ -579,6 +578,7 @@ PRIVATE void pci_intel_init()
        if (vid == 0xffff && did == 0xffff)
                return; /* Nothing here */
 
+#if 0
        for (i= 0; pci_intel_ctrl[i].vid; i++)
        {
                if (pci_intel_ctrl[i].vid == vid &&
@@ -594,6 +594,7 @@ PRIVATE void pci_intel_init()
                        "\tvendor %04X (%s), device %04X\n",
                        vid, pci_vid_name(vid), did);
        }
+#endif
 
        if (nr_pcibus >= NR_PCIBUS)
                panic("PCI","too many PCI busses", nr_pcibus);
index 179113933f5a942bfd1a793b820f6375e41ee48c..5a56fffbaeb4a3f69478a4515590d462a42da9f1 100644 (file)
@@ -75,7 +75,9 @@ extern struct pci_vendor pci_vendor_table[];
 extern struct pci_device pci_device_table[];
 extern struct pci_baseclass pci_baseclass_table[];
 extern struct pci_subclass pci_subclass_table[];
+#if 0
 extern struct pci_intel_ctrl pci_intel_ctrl[];
+#endif
 extern struct pci_isabridge pci_isabridge[];
 extern struct pci_pcibridge pci_pcibridge[];
 
index 8f8b57f0a0058a3878d73a4eef1c41d7262b8073..df3ca004c83c2f38f189d62f74d50d02b54fce69 100644 (file)
@@ -233,6 +233,7 @@ struct pci_subclass pci_subclass_table[]=
        { 0x00, 0x00, 0x00, NULL }
 };
 
+#if 0
 struct pci_intel_ctrl pci_intel_ctrl[]=
 {
        { 0x1022, 0x700C, },    /* AMD-762 */
@@ -256,6 +257,7 @@ struct pci_intel_ctrl pci_intel_ctrl[]=
        { 0x8086, 0x7192, },    /* Intel 82443BX - AGP disabled */
        { 0x0000, 0x0000, },
 };
+#endif
 
 struct pci_isabridge pci_isabridge[]=
 {