| 556 | int bus_delayed_attach_children(device_t bus); |
| 557 | |
| 558 | static __inline struct resource * |
| 559 | bus_alloc_resource_any(device_t dev, int type, int *rid, u_int flags) |
| 560 | { |
| 561 | return (bus_alloc_resource(dev, type, rid, 0, ~0, 1, flags)); |
| 562 | } |
| 563 | |
| 564 | static __inline struct resource * |
| 565 | bus_alloc_resource_anywhere(device_t dev, int type, int *rid, |
no test coverage detected