Lines Matching refs:qInfo
1058 HAL_TX_QUEUE_INFO *qi, const HAL_TXQ_INFO *qInfo) in ath_hal_setTxQProps() argument
1068 qi->tqi_ver = qInfo->tqi_ver; in ath_hal_setTxQProps()
1069 qi->tqi_subtype = qInfo->tqi_subtype; in ath_hal_setTxQProps()
1070 qi->tqi_qflags = qInfo->tqi_qflags; in ath_hal_setTxQProps()
1071 qi->tqi_priority = qInfo->tqi_priority; in ath_hal_setTxQProps()
1072 if (qInfo->tqi_aifs != HAL_TXQ_USEDEFAULT) in ath_hal_setTxQProps()
1073 qi->tqi_aifs = AH_MIN(qInfo->tqi_aifs, 255); in ath_hal_setTxQProps()
1076 if (qInfo->tqi_cwmin != HAL_TXQ_USEDEFAULT) { in ath_hal_setTxQProps()
1077 cw = AH_MIN(qInfo->tqi_cwmin, 1024); in ath_hal_setTxQProps()
1083 qi->tqi_cwmin = qInfo->tqi_cwmin; in ath_hal_setTxQProps()
1084 if (qInfo->tqi_cwmax != HAL_TXQ_USEDEFAULT) { in ath_hal_setTxQProps()
1085 cw = AH_MIN(qInfo->tqi_cwmax, 1024); in ath_hal_setTxQProps()
1093 if (qInfo->tqi_shretry != 0) in ath_hal_setTxQProps()
1094 qi->tqi_shretry = AH_MIN(qInfo->tqi_shretry, 15); in ath_hal_setTxQProps()
1097 if (qInfo->tqi_lgretry != 0) in ath_hal_setTxQProps()
1098 qi->tqi_lgretry = AH_MIN(qInfo->tqi_lgretry, 15); in ath_hal_setTxQProps()
1101 qi->tqi_cbrPeriod = qInfo->tqi_cbrPeriod; in ath_hal_setTxQProps()
1102 qi->tqi_cbrOverflowLimit = qInfo->tqi_cbrOverflowLimit; in ath_hal_setTxQProps()
1103 qi->tqi_burstTime = qInfo->tqi_burstTime; in ath_hal_setTxQProps()
1104 qi->tqi_readyTime = qInfo->tqi_readyTime; in ath_hal_setTxQProps()
1106 switch (qInfo->tqi_subtype) { in ath_hal_setTxQProps()
1119 HAL_TXQ_INFO *qInfo, const HAL_TX_QUEUE_INFO *qi) in ath_hal_getTxQProps() argument
1127 qInfo->tqi_ver = qi->tqi_ver; in ath_hal_getTxQProps()
1128 qInfo->tqi_subtype = qi->tqi_subtype; in ath_hal_getTxQProps()
1129 qInfo->tqi_qflags = qi->tqi_qflags; in ath_hal_getTxQProps()
1130 qInfo->tqi_priority = qi->tqi_priority; in ath_hal_getTxQProps()
1131 qInfo->tqi_aifs = qi->tqi_aifs; in ath_hal_getTxQProps()
1132 qInfo->tqi_cwmin = qi->tqi_cwmin; in ath_hal_getTxQProps()
1133 qInfo->tqi_cwmax = qi->tqi_cwmax; in ath_hal_getTxQProps()
1134 qInfo->tqi_shretry = qi->tqi_shretry; in ath_hal_getTxQProps()
1135 qInfo->tqi_lgretry = qi->tqi_lgretry; in ath_hal_getTxQProps()
1136 qInfo->tqi_cbrPeriod = qi->tqi_cbrPeriod; in ath_hal_getTxQProps()
1137 qInfo->tqi_cbrOverflowLimit = qi->tqi_cbrOverflowLimit; in ath_hal_getTxQProps()
1138 qInfo->tqi_burstTime = qi->tqi_burstTime; in ath_hal_getTxQProps()
1139 qInfo->tqi_readyTime = qi->tqi_readyTime; in ath_hal_getTxQProps()
1140 qInfo->tqi_compBuf = qi->tqi_physCompBuf; in ath_hal_getTxQProps()