diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-10-01 15:04:49 +0300 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2021-10-02 18:31:15 +0300 |
commit | 73d59c9263a0fbcf8f769daea9c1fe33ae38c9e8 (patch) | |
tree | 0de9d0c76737c138f457f89e8e7321ea9949582e /drivers/power | |
parent | 5ce39985c60418579fab1d4ee81427d12bf9e64f (diff) | |
download | linux-73d59c9263a0fbcf8f769daea9c1fe33ae38c9e8.tar.xz |
power: supply: wm831x_power: fix spelling mistake on function name
There is a spelling mistake in the name wm831x_battey_apply_config,
fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/wm831x_power.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/power/supply/wm831x_power.c b/drivers/power/supply/wm831x_power.c index 4cd2dd870039..82e31066c746 100644 --- a/drivers/power/supply/wm831x_power.c +++ b/drivers/power/supply/wm831x_power.c @@ -234,7 +234,7 @@ static struct chg_map chg_times[] = { { 510, 15 << WM831X_CHG_TIME_SHIFT }, }; -static void wm831x_battey_apply_config(struct wm831x *wm831x, +static void wm831x_battery_apply_config(struct wm831x *wm831x, struct chg_map *map, int count, int val, int *reg, const char *name, const char *units) @@ -281,24 +281,24 @@ static void wm831x_config_battery(struct wm831x *wm831x) if (pdata->fast_enable) reg1 |= WM831X_CHG_FAST; - wm831x_battey_apply_config(wm831x, trickle_ilims, + wm831x_battery_apply_config(wm831x, trickle_ilims, ARRAY_SIZE(trickle_ilims), pdata->trickle_ilim, ®2, "trickle charge current limit", "mA"); - wm831x_battey_apply_config(wm831x, vsels, ARRAY_SIZE(vsels), + wm831x_battery_apply_config(wm831x, vsels, ARRAY_SIZE(vsels), pdata->vsel, ®2, "target voltage", "mV"); - wm831x_battey_apply_config(wm831x, fast_ilims, ARRAY_SIZE(fast_ilims), + wm831x_battery_apply_config(wm831x, fast_ilims, ARRAY_SIZE(fast_ilims), pdata->fast_ilim, ®2, "fast charge current limit", "mA"); - wm831x_battey_apply_config(wm831x, eoc_iterms, ARRAY_SIZE(eoc_iterms), + wm831x_battery_apply_config(wm831x, eoc_iterms, ARRAY_SIZE(eoc_iterms), pdata->eoc_iterm, ®1, "end of charge current threshold", "mA"); - wm831x_battey_apply_config(wm831x, chg_times, ARRAY_SIZE(chg_times), + wm831x_battery_apply_config(wm831x, chg_times, ARRAY_SIZE(chg_times), pdata->timeout, ®2, "charger timeout", "min"); |