Add pccard child to nexus. A better version would take care of this
with an identify method, but that has not been implemented. Forgotten by: imp
This commit is contained in:
parent
1ba0a9839f
commit
c98dba8737
@ -224,6 +224,11 @@ 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;
|
||||
}
|
||||
|
||||
|
@ -224,6 +224,11 @@ 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;
|
||||
}
|
||||
|
||||
|
@ -224,6 +224,11 @@ 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;
|
||||
}
|
||||
|
||||
|
@ -224,6 +224,11 @@ 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 New Issue
Block a user