| 4533 | } |
| 4534 | |
| 4535 | int |
| 4536 | iflib_device_probe_vendor(device_t dev) |
| 4537 | { |
| 4538 | int probe; |
| 4539 | |
| 4540 | probe = iflib_device_probe(dev); |
| 4541 | if (probe == BUS_PROBE_DEFAULT) |
| 4542 | return (BUS_PROBE_VENDOR); |
| 4543 | else |
| 4544 | return (probe); |
| 4545 | } |
| 4546 | |
| 4547 | static void |
| 4548 | iflib_reset_qvalues(if_ctx_t ctx) |
nothing calls this directly
no test coverage detected