summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2000-12-12 13:11:42 +0000
committermsmith <msmith@FreeBSD.org>2000-12-12 13:11:42 +0000
commit98070a71a38611a90a30345cff491368a1509f82 (patch)
treecefff29ab4b42776597b907a46a7d47399206152
parenta507515e083a208609badf2032b1cf4a61571fc5 (diff)
downloadFreeBSD-src-98070a71a38611a90a30345cff491368a1509f82.zip
FreeBSD-src-98070a71a38611a90a30345cff491368a1509f82.tar.gz
Don't try to fix up the Orion here; the interface we use is wrong for the
new code (and about to disappear too).
-rw-r--r--sys/dev/pci/fixup_pci.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/dev/pci/fixup_pci.c b/sys/dev/pci/fixup_pci.c
index c2b57eb..d8ef603 100644
--- a/sys/dev/pci/fixup_pci.c
+++ b/sys/dev/pci/fixup_pci.c
@@ -48,7 +48,6 @@
*/
static int fixup_pci_probe(device_t dev);
-static void fixbushigh_i1225(device_t dev);
static void fixwsc_natoma(device_t dev);
static device_method_t fixup_pci_methods[] = {
@@ -72,9 +71,6 @@ static int
fixup_pci_probe(device_t dev)
{
switch (pci_get_devid(dev)) {
- case 0x12258086: /* Intel 82454KX/GX (Orion) */
- fixbushigh_i1225(dev);
- break;
case 0x12378086: /* Intel 82440FX (Natoma) */
fixwsc_natoma(dev);
break;
@@ -83,18 +79,6 @@ fixup_pci_probe(device_t dev)
}
static void
-fixbushigh_i1225(device_t dev)
-{
- int supbus;
-
- supbus = pci_read_config(dev, 0x41, 1);
- if (supbus != 0xff) {
- pci_set_secondarybus(dev, supbus + 1);
- pci_set_subordinatebus(dev, supbus + 1);
- }
-}
-
-static void
fixwsc_natoma(device_t dev)
{
int pmccfg;
OpenPOWER on IntegriCloud