Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/staging/rtl8723bs/hal/
Dhal_com_phycfg.c2979 u8 loadingStage = 0, limitValue = 0, fraction = 0; in phy_ParsePowerLimitTableFile() local
3163 if (!GetU1ByteIntegerFromStringInDecimal(powerLimit, &limitValue)) in phy_ParsePowerLimitTableFile()
3166 limitValue *= 2; in phy_ParsePowerLimitTableFile()
3169 ++limitValue; in phy_ParsePowerLimitTableFile()
3172 if (limitValue >= 100) { in phy_ParsePowerLimitTableFile()
3173 powerLimit[cnt++] = limitValue/100 + '0'; in phy_ParsePowerLimitTableFile()
3174 limitValue %= 100; in phy_ParsePowerLimitTableFile()
3176 if (limitValue >= 10) { in phy_ParsePowerLimitTableFile()
3177 powerLimit[cnt++] = limitValue/10 + '0'; in phy_ParsePowerLimitTableFile()
3178 limitValue %= 10; in phy_ParsePowerLimitTableFile()
[all …]