| 3665 | } |
| 3666 | |
| 3667 | device_t |
| 3668 | bus_generic_add_child(device_t dev, u_int order, const char *name, int unit) |
| 3669 | { |
| 3670 | return (device_add_child_ordered(dev, order, name, unit)); |
| 3671 | } |
| 3672 | |
| 3673 | /** |
| 3674 | * @brief Helper function for implementing DEVICE_PROBE() |
nothing calls this directly
no test coverage detected