| 93 | MALLOC_DEFINE(M_ARMV8_CRYPTO, "armv8_crypto", "ARMv8 Crypto Data"); |
| 94 | |
| 95 | static void |
| 96 | armv8_crypto_identify(driver_t *drv, device_t parent) |
| 97 | { |
| 98 | |
| 99 | /* NB: order 10 is so we get attached after h/w devices */ |
| 100 | if (device_find_child(parent, "armv8crypto", -1) == NULL && |
| 101 | BUS_ADD_CHILD(parent, 10, "armv8crypto", -1) == 0) |
| 102 | panic("ARMv8 crypto: could not attach"); |
| 103 | } |
| 104 | |
| 105 | static int |
| 106 | armv8_crypto_probe(device_t dev) |
nothing calls this directly
no test coverage detected