Lines Matching refs:_v
475 #define ath_hal_enable_rfkill(_ah, _v) \ argument
476 ath_hal_setcapability(_ah, HAL_CAP_RFSILENT, 1, _v, AH_NULL)
585 #define SM(_v, _f) (((_v) << _f##_S) & (_f)) argument
586 #define MS(_v, _f) (((_v) & (_f)) >> _f##_S) argument
589 #define OS_REG_RMW_FIELD(_a, _r, _f, _v) \ argument
591 (OS_REG_READ(_a, _r) &~ (_f)) | (((_v) << _f##_S) & (_f)))
598 #define OS_REG_RMW_FIELD_ALT(_a, _r, _f, _v) \ argument
601 (((_v) << _f##_S) & (_f<<_f##_S)))
608 #define OS_A_REG_RMW_FIELD(_a, _r, _f, _v) \ argument
610 (((_v) << _f##_S) & (_f))) ; OS_DELAY(100); } while (0)
611 #define OS_A_REG_WRITE(_a, _r, _v) \ argument
612 do { OS_REG_WRITE(_a, _r, _v); OS_DELAY(100); } while (0)