Remove pccard attachment stub, this caused pccard unit 0 to be allocated

and unusable by the pccard system since pccard doesn't attach to the
nexus any more.  This was stopping my 3c589D from working as pccard unit
0 is used directly for resource allocation and this fails when unit 0
isn't actually attached to anything.
This commit is contained in:
Peter Wemm 1999-10-19 17:12:28 +00:00
parent c0593e34b7
commit 74121ffc35
4 changed files with 0 additions and 20 deletions

View file

@ -221,11 +221,6 @@ nexus_attach(device_t dev)
panic("nexus_attach isa");
device_probe_and_attach(child);
}
child = device_add_child(dev, "pccard", 0, 0);
if (child == NULL)
panic("nexus_probe pccard");
device_probe_and_attach(child);
return 0;
}

View file

@ -221,11 +221,6 @@ nexus_attach(device_t dev)
panic("nexus_attach isa");
device_probe_and_attach(child);
}
child = device_add_child(dev, "pccard", 0, 0);
if (child == NULL)
panic("nexus_probe pccard");
device_probe_and_attach(child);
return 0;
}

View file

@ -221,11 +221,6 @@ nexus_attach(device_t dev)
panic("nexus_attach isa");
device_probe_and_attach(child);
}
child = device_add_child(dev, "pccard", 0, 0);
if (child == NULL)
panic("nexus_probe pccard");
device_probe_and_attach(child);
return 0;
}

View file

@ -221,11 +221,6 @@ nexus_attach(device_t dev)
panic("nexus_attach isa");
device_probe_and_attach(child);
}
child = device_add_child(dev, "pccard", 0, 0);
if (child == NULL)
panic("nexus_probe pccard");
device_probe_and_attach(child);
return 0;
}