summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSubbaraman Narayanamurthy <subbaram@codeaurora.org>2016-12-09 15:24:12 -0800
committerSubbaraman Narayanamurthy <subbaram@codeaurora.org>2016-12-09 15:33:59 -0800
commit7b232891df5f8c538f74588e246ed02d9d045eee (patch)
treebdbd1b37819761938c12752c01b9c32d3e4c5f54 /drivers
parent688a4e14e194a18d1b4a59c49c03132027f1ec77 (diff)
qpnp-fg-gen3: Use the correct property name to get fastcharge current
Currently GEN3 FG driver reads "qcom,nom-batt-capacity-mah" property from the battery profile device node to use that for notifying fastcharge current to the charger driver. Change that to use "qcom,fastchg-current-ma" property which seems to be more appropriate. Update all the battery profiles that are used with GEN3 FG to follow that. Change-Id: I119e6af297b37a06a227475f712f938367fb65bc Signed-off-by: Subbaraman Narayanamurthy <subbaram@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/power/qcom-charger/qpnp-fg-gen3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/qcom-charger/qpnp-fg-gen3.c b/drivers/power/qcom-charger/qpnp-fg-gen3.c
index 4d2cfc84d455..48f7db6867d2 100644
--- a/drivers/power/qcom-charger/qpnp-fg-gen3.c
+++ b/drivers/power/qcom-charger/qpnp-fg-gen3.c
@@ -824,10 +824,10 @@ static int fg_get_batt_profile(struct fg_chip *chip)
chip->bp.float_volt_uv = -EINVAL;
}
- rc = of_property_read_u32(profile_node, "qcom,nom-batt-capacity-mah",
+ rc = of_property_read_u32(profile_node, "qcom,fastchg-current-ma",
&chip->bp.fastchg_curr_ma);
if (rc < 0) {
- pr_err("battery nominal capacity unavailable, rc:%d\n", rc);
+ pr_err("battery fastchg current unavailable, rc:%d\n", rc);
chip->bp.fastchg_curr_ma = -EINVAL;
}