Commit 73d59c92 authored by Colin Ian King's avatar Colin Ian King Committed by Sebastian Reichel

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: default avatarColin Ian King <colin.king@canonical.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent 5ce39985
...@@ -234,7 +234,7 @@ static struct chg_map chg_times[] = { ...@@ -234,7 +234,7 @@ static struct chg_map chg_times[] = {
{ 510, 15 << WM831X_CHG_TIME_SHIFT }, { 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, struct chg_map *map, int count, int val,
int *reg, const char *name, int *reg, const char *name,
const char *units) const char *units)
...@@ -281,24 +281,24 @@ static void wm831x_config_battery(struct wm831x *wm831x) ...@@ -281,24 +281,24 @@ static void wm831x_config_battery(struct wm831x *wm831x)
if (pdata->fast_enable) if (pdata->fast_enable)
reg1 |= WM831X_CHG_FAST; reg1 |= WM831X_CHG_FAST;
wm831x_battey_apply_config(wm831x, trickle_ilims, wm831x_battery_apply_config(wm831x, trickle_ilims,
ARRAY_SIZE(trickle_ilims), ARRAY_SIZE(trickle_ilims),
pdata->trickle_ilim, &reg2, pdata->trickle_ilim, &reg2,
"trickle charge current limit", "mA"); "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, &reg2, pdata->vsel, &reg2,
"target voltage", "mV"); "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, &reg2, pdata->fast_ilim, &reg2,
"fast charge current limit", "mA"); "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, &reg1, pdata->eoc_iterm, &reg1,
"end of charge current threshold", "mA"); "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, &reg2, pdata->timeout, &reg2,
"charger timeout", "min"); "charger timeout", "min");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment