mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
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:
parent
c0593e34b7
commit
74121ffc35
4 changed files with 0 additions and 20 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue