Don't try to fix up the Orion here; the interface we use is wrong for the

new code (and about to disappear too).
This commit is contained in:
Mike Smith 2000-12-12 13:11:42 +00:00
parent 5a59cccc61
commit 52daea05c5

View File

@ -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;
@ -82,18 +78,6 @@ fixup_pci_probe(device_t dev)
return(ENXIO);
}
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)
{