Home
last modified time | relevance | path

Searched refs:pChannelData (Results 1 – 3 of 3) sorted by relevance

/NextBSD/sys/dev/ath/ath_hal/ar5212/
HDar5111.c582 const DATA_PER_CHANNEL *pChannelData = pSrcStruct->pDataPerChannel; in ar5212FindValueInList() local
586 if (pChannelData->channelValue == channel) { in ar5212FindValueInList()
587 const uint16_t* pPcdac = pChannelData->PcdacValues; in ar5212FindValueInList()
590 for (j = 0; j < pChannelData->numPcdacValues; j++ ) { in ar5212FindValueInList()
592 *powerValue = pChannelData->PwrValues[j]; in ar5212FindValueInList()
598 pChannelData++; in ar5212FindValueInList()
612 const DATA_PER_CHANNEL *pChannelData = pSrcStruct->pDataPerChannel; in ar5212GetLowerUpperPcdacs() local
617 if (pChannelData->channelValue == channel) in ar5212GetLowerUpperPcdacs()
619 pChannelData++; in ar5212GetLowerUpperPcdacs()
621 ar5212GetLowerUpperValues(pcdac, pChannelData->PcdacValues, in ar5212GetLowerUpperPcdacs()
[all …]
/NextBSD/sys/dev/ath/ath_hal/
HDah_eeprom_v3.c835 DATA_PER_CHANNEL *pChannelData = AH_NULL; in readEepromRawPowerCalInfo() local
843 pChannelData = ee->ee_dataPerChannel11a; in readEepromRawPowerCalInfo()
851 pChannelData = ee->ee_dataPerChannel11b; in readEepromRawPowerCalInfo()
859 pChannelData = ee->ee_dataPerChannel11g; in readEepromRawPowerCalInfo()
868 pChannelData->channelValue = pChannels[i]; in readEepromRawPowerCalInfo()
871 pChannelData->pcdacMax = (uint16_t)((eeval >> 10) & PCDAC_MASK); in readEepromRawPowerCalInfo()
872 pChannelData->pcdacMin = (uint16_t)((eeval >> 4) & PCDAC_MASK); in readEepromRawPowerCalInfo()
873 pChannelData->PwrValues[0] = (uint16_t)((eeval << 2) & POWER_MASK); in readEepromRawPowerCalInfo()
876 pChannelData->PwrValues[0] |= (uint16_t)((eeval >> 14) & 0x3); in readEepromRawPowerCalInfo()
877 pChannelData->PwrValues[1] = (uint16_t)((eeval >> 8) & POWER_MASK); in readEepromRawPowerCalInfo()
[all …]
/NextBSD/sys/dev/ath/ath_hal/ar5211/
HDar5211_reset.c1736 const DATA_PER_CHANNEL *pChannelData; in ar5211FindValueInList() local
1740 pChannelData = pSrcStruct->pDataPerChannel; in ar5211FindValueInList()
1742 if (pChannelData->channelValue == channel) { in ar5211FindValueInList()
1743 pPcdac = pChannelData->PcdacValues; in ar5211FindValueInList()
1744 for (j = 0; j < pChannelData->numPcdacValues; j++ ) { in ar5211FindValueInList()
1746 *powerValue = pChannelData->PwrValues[j]; in ar5211FindValueInList()
1752 pChannelData++; in ar5211FindValueInList()
1873 const DATA_PER_CHANNEL *pChannelData; in ar5211GetLowerUpperPcdacs() local
1877 pChannelData = pSrcStruct->pDataPerChannel; in ar5211GetLowerUpperPcdacs()
1879 if (pChannelData->channelValue == channel) in ar5211GetLowerUpperPcdacs()
[all …]