| 3903 | } |
| 3904 | |
| 3905 | static void |
| 3906 | bus_helper_reset_prepare_rollback(device_t dev, device_t child, int flags) |
| 3907 | { |
| 3908 | child = TAILQ_NEXT(child, link); |
| 3909 | if (child == NULL) |
| 3910 | return; |
| 3911 | TAILQ_FOREACH_FROM(child, &dev->children,link) { |
| 3912 | BUS_RESET_POST(dev, child); |
| 3913 | if ((flags & DEVF_RESET_DETACH) != 0) |
| 3914 | device_probe_and_attach(child); |
| 3915 | else |
| 3916 | BUS_RESUME_CHILD(dev, child); |
| 3917 | } |
| 3918 | } |
| 3919 | |
| 3920 | /** |
| 3921 | * @brief Helper function for implementing BUS_RESET_PREPARE |
no test coverage detected