Lines Matching defs:maps
210 struct pinctrl_map **maps)
213 struct pinctrl_map *map = *maps;
229 (*maps)++;
237 struct pinctrl_map **maps)
241 struct pinctrl_map *map = *maps;
277 (*maps)++;
283 struct pinctrl_map *maps,
289 if (maps[i].type == PIN_MAP_TYPE_CONFIGS_PIN)
290 kfree(maps[i].data.configs.configs);
292 kfree(maps);
300 struct pinctrl_map *maps, *cur_map;
347 cur_map = maps = kcalloc(num_pins * maps_per_pin, sizeof(*maps),
349 if (!maps)
387 *map = maps;
392 * The fail path removes any maps that have been allocated. The fail path is
393 * only called from code after maps has been kzalloc'd. It is also safe to
395 * failed before all the mappings were read as all maps are allocated at once,
400 wmt_pctl_dt_free_map(pctldev, maps, num_pins * maps_per_pin);