Lines Matching refs:_sc
32 #define ADC_READ4(_sc, reg) bus_read_4((_sc)->sc_mem_res, reg) argument
33 #define ADC_WRITE4(_sc, reg, value) \ argument
34 bus_write_4((_sc)->sc_mem_res, reg, value)
73 #define TI_ADC_LOCK(_sc) \ argument
74 mtx_lock(&(_sc)->sc_mtx)
75 #define TI_ADC_UNLOCK(_sc) \ argument
76 mtx_unlock(&(_sc)->sc_mtx)
77 #define TI_ADC_LOCK_INIT(_sc) \ argument
78 mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->sc_dev), \
80 #define TI_ADC_LOCK_DESTROY(_sc) \ argument
81 mtx_destroy(&_sc->sc_mtx);
82 #define TI_ADC_LOCK_ASSERT(_sc) \ argument
83 mtx_assert(&(_sc)->sc_mtx, MA_OWNED)