Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/staging/rtl8723bs/hal/
Dhal_com_phycfg.c2994 u8 loadingStage = 0, limitValue = 0, fraction = 0; in phy_ParsePowerLimitTableFile() local
3178 if (!GetU1ByteIntegerFromStringInDecimal(powerLimit, &limitValue)) in phy_ParsePowerLimitTableFile()
3181 limitValue *= 2; in phy_ParsePowerLimitTableFile()
3184 ++limitValue; in phy_ParsePowerLimitTableFile()
3187 if (limitValue >= 100) { in phy_ParsePowerLimitTableFile()
3188 powerLimit[cnt++] = limitValue/100 + '0'; in phy_ParsePowerLimitTableFile()
3189 limitValue %= 100; in phy_ParsePowerLimitTableFile()
3191 if (limitValue >= 10) { in phy_ParsePowerLimitTableFile()
3192 powerLimit[cnt++] = limitValue/10 + '0'; in phy_ParsePowerLimitTableFile()
3193 limitValue %= 10; in phy_ParsePowerLimitTableFile()
[all …]