| 80 | MALLOC_DEFINE(M_BLAKE2, "blake2_data", "Blake2 Data"); |
| 81 | |
| 82 | static void |
| 83 | blake2_identify(driver_t *drv, device_t parent) |
| 84 | { |
| 85 | |
| 86 | /* NB: order 10 is so we get attached after h/w devices */ |
| 87 | if (device_find_child(parent, "blaketwo", -1) == NULL && |
| 88 | BUS_ADD_CHILD(parent, 10, "blaketwo", -1) == 0) |
| 89 | panic("blaketwo: could not attach"); |
| 90 | } |
| 91 | |
| 92 | static int |
| 93 | blake2_probe(device_t dev) |
nothing calls this directly
no test coverage detected