* Called when there's no match for this device. This is only called * the first time that no match happens, so we don't keep getting this * message. Should that prove to be undesirable, we can change it. * This is called when all drivers that can attach to a given bus * decline to accept this device. Other errors may not be detected. */
| 786 | * decline to accept this device. Other errors may not be detected. |
| 787 | */ |
| 788 | static void |
| 789 | devnomatch(device_t dev) |
| 790 | { |
| 791 | devaddq("?", "", dev); |
| 792 | } |
| 793 | |
| 794 | static int |
| 795 | sysctl_devctl_queue(SYSCTL_HANDLER_ARGS) |
no test coverage detected