Searched refs:rtsx_mtx (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/rtsx/ |
H A D | rtsx.c | 75 struct mtx rtsx_mtx; /* device mutex */ member 292 #define RTSX_LOCK_INIT(_sc) mtx_init(&(_sc)->rtsx_mtx, \ 294 #define RTSX_LOCK(_sc) mtx_lock(&(_sc)->rtsx_mtx) 295 #define RTSX_UNLOCK(_sc) mtx_unlock(&(_sc)->rtsx_mtx) 296 #define RTSX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->rtsx_mtx) 2064 …if (msleep(&sc->rtsx_intr_status, &sc->rtsx_mtx, 0, "rtsxintr", sc->rtsx_timeout_cmd) == EWOULDBLO… 3533 msleep(&sc->rtsx_bus_busy, &sc->rtsx_mtx, 0, "rtsxah", 0); 3677 callout_init_mtx(&sc->rtsx_timeout_callout, &sc->rtsx_mtx, 0);
|