| 250 | } |
| 251 | |
| 252 | void |
| 253 | ti_prcm_device_unlock(device_t dev) |
| 254 | { |
| 255 | struct ti_prcm_softc *sc; |
| 256 | |
| 257 | sc = device_get_softc(dev); |
| 258 | mtx_unlock(&sc->mtx); |
| 259 | } |
| 260 | |
| 261 | static device_method_t ti_prcm_methods[] = { |
| 262 | DEVMETHOD(device_probe, ti_prcm_probe), |
no test coverage detected