Lines Matching defs:func
1251 struct st_pmx_func *func;
1255 func = &info->functions[index];
1256 func->name = np->name;
1257 func->ngroups = of_get_child_count(np);
1258 if (func->ngroups == 0) {
1262 func->groups = devm_kcalloc(info->dev,
1263 func->ngroups, sizeof(char *), GFP_KERNEL);
1264 if (!func->groups)
1269 func->groups[i] = child->name;
1279 index, func->name, func->ngroups);