diff options
author | Enric Balletbo i Serra <enric.balletbo@collabora.com> | 2019-04-15 17:29:18 +0300 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2019-04-15 22:40:00 +0300 |
commit | 5ec87ecde235a2e0aa99ceae57b9d0978461ebe4 (patch) | |
tree | c74a86f07240b6ca133d23e3e222d6db82234e76 /drivers/power | |
parent | d7830ce3c5e0fe6aee645a1a01c9ae367d31bb9e (diff) | |
download | linux-5ec87ecde235a2e0aa99ceae57b9d0978461ebe4.tar.xz |
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.c | 4 |
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, }; |