summaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorEnric Balletbo i Serra2019-04-15 16:29:18 +0200
committerSebastian Reichel2019-04-15 21:40:00 +0200
commit5ec87ecde235a2e0aa99ceae57b9d0978461ebe4 (patch)
treec74a86f07240b6ca133d23e3e222d6db82234e76 /drivers/power
parentpower: supply: ltc3651-charger: Fix device name (rename files) (diff)
downloadkernel-qcow2-linux-5ec87ecde235a2e0aa99ceae57b9d0978461ebe4.tar.gz
kernel-qcow2-linux-5ec87ecde235a2e0aa99ceae57b9d0978461ebe4.tar.xz
kernel-qcow2-linux-5ec87ecde235a2e0aa99ceae57b9d0978461ebe4.zip
power: supply: core: fix typo in function to get current charge control limit
There is a spelling mistake in ps_get_cur_charge_cntl_limit function so replace 'chrage' for 'charge'. Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/supply/power_supply_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/supply/power_supply_core.c b/drivers/power/supply/power_supply_core.c
index ae9c9d1d437c..65c619c03223 100644
--- a/drivers/power/supply/power_supply_core.c
+++ b/drivers/power/supply/power_supply_core.c
@@ -899,7 +899,7 @@ static int ps_get_max_charge_cntl_limit(struct thermal_cooling_device *tcd,
return ret;
}
-static int ps_get_cur_chrage_cntl_limit(struct thermal_cooling_device *tcd,
+static int ps_get_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
unsigned long *state)
{
struct power_supply *psy;
@@ -934,7 +934,7 @@ static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
static const struct thermal_cooling_device_ops psy_tcd_ops = {
.get_max_state = ps_get_max_charge_cntl_limit,
- .get_cur_state = ps_get_cur_chrage_cntl_limit,
+ .get_cur_state = ps_get_cur_charge_cntl_limit,
.set_cur_state = ps_set_cur_charge_cntl_limit,
};