| 130 | } |
| 131 | |
| 132 | static int |
| 133 | padlock_detach(device_t dev) |
| 134 | { |
| 135 | struct padlock_softc *sc = device_get_softc(dev); |
| 136 | |
| 137 | crypto_unregister_all(sc->sc_cid); |
| 138 | return (0); |
| 139 | } |
| 140 | |
| 141 | static int |
| 142 | padlock_probesession(device_t dev, const struct crypto_session_params *csp) |
nothing calls this directly
no test coverage detected