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
b99d6b5edc
commit
19032f4b33
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50992
@ -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