Commit ab8866c5 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Linus Walleij

pinctrl: keembay: Convert to use func member

Convert drivers to use func member embedded in struct function_desc,
because other members will be removed to avoid duplication and
desynchronisation of the generic pin function description.
Signed-off-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20240530085745.1539925-10-andy.shevchenko@gmail.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent be9e92af
...@@ -1566,7 +1566,7 @@ static int keembay_add_functions(struct keembay_pinctrl *kpc, ...@@ -1566,7 +1566,7 @@ static int keembay_add_functions(struct keembay_pinctrl *kpc,
unsigned int grp_idx = 0; unsigned int grp_idx = 0;
int j; int j;
group_names = devm_kcalloc(kpc->dev, func->num_group_names, group_names = devm_kcalloc(kpc->dev, func->func.ngroups,
sizeof(*group_names), GFP_KERNEL); sizeof(*group_names), GFP_KERNEL);
if (!group_names) if (!group_names)
return -ENOMEM; return -ENOMEM;
...@@ -1576,20 +1576,20 @@ static int keembay_add_functions(struct keembay_pinctrl *kpc, ...@@ -1576,20 +1576,20 @@ static int keembay_add_functions(struct keembay_pinctrl *kpc,
struct keembay_mux_desc *mux; struct keembay_mux_desc *mux;
for (mux = pdesc->drv_data; mux->name; mux++) { for (mux = pdesc->drv_data; mux->name; mux++) {
if (!strcmp(mux->name, func->name)) if (!strcmp(mux->name, func->func.name))
group_names[grp_idx++] = pdesc->name; group_names[grp_idx++] = pdesc->name;
} }
} }
func->group_names = group_names; func->func.groups = group_names;
} }
/* Add all functions */ /* Add all functions */
for (i = 0; i < kpc->nfuncs; i++) { for (i = 0; i < kpc->nfuncs; i++) {
pinmux_generic_add_function(kpc->pctrl, pinmux_generic_add_function(kpc->pctrl,
functions[i].name, functions[i].func.name,
functions[i].group_names, functions[i].func.groups,
functions[i].num_group_names, functions[i].func.ngroups,
functions[i].data); functions[i].data);
} }
...@@ -1619,17 +1619,17 @@ static int keembay_build_functions(struct keembay_pinctrl *kpc) ...@@ -1619,17 +1619,17 @@ static int keembay_build_functions(struct keembay_pinctrl *kpc)
struct function_desc *fdesc; struct function_desc *fdesc;
/* Check if we already have function for this mux */ /* Check if we already have function for this mux */
for (fdesc = keembay_funcs; fdesc->name; fdesc++) { for (fdesc = keembay_funcs; fdesc->func.name; fdesc++) {
if (!strcmp(mux->name, fdesc->name)) { if (!strcmp(mux->name, fdesc->func.name)) {
fdesc->num_group_names++; fdesc->func.ngroups++;
break; break;
} }
} }
/* Setup new function for this mux we didn't see before */ /* Setup new function for this mux we didn't see before */
if (!fdesc->name) { if (!fdesc->name) {
fdesc->name = mux->name; fdesc->func.name = mux->name;
fdesc->num_group_names = 1; fdesc->func.ngroups = 1;
fdesc->data = &mux->mode; fdesc->data = &mux->mode;
kpc->nfuncs++; kpc->nfuncs++;
} }
......
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