| 69 | static MALLOC_DEFINE(M_OSSL, "ossl", "OpenSSL crypto"); |
| 70 | |
| 71 | static void |
| 72 | ossl_identify(driver_t *driver, device_t parent) |
| 73 | { |
| 74 | |
| 75 | if (device_find_child(parent, "ossl", -1) == NULL) |
| 76 | BUS_ADD_CHILD(parent, 10, "ossl", -1); |
| 77 | } |
| 78 | |
| 79 | static int |
| 80 | ossl_probe(device_t dev) |
nothing calls this directly
no test coverage detected