| 71 | MALLOC_DEFINE(M_PADLOCK, "padlock_data", "PadLock Data"); |
| 72 | |
| 73 | static void |
| 74 | padlock_identify(driver_t *drv, device_t parent) |
| 75 | { |
| 76 | /* NB: order 10 is so we get attached after h/w devices */ |
| 77 | if (device_find_child(parent, "padlock", -1) == NULL && |
| 78 | BUS_ADD_CHILD(parent, 10, "padlock", -1) == 0) |
| 79 | panic("padlock: could not attach"); |
| 80 | } |
| 81 | |
| 82 | static int |
| 83 | padlock_probe(device_t dev) |
nothing calls this directly
no test coverage detected