Lines Matching refs:paths
380 struct icc_path **paths;
407 paths = kcalloc(num_paths, sizeof(*paths), GFP_KERNEL);
408 if (!paths) {
413 paths[i] = of_icc_get_by_index(dev, i);
414 if (IS_ERR(paths[i])) {
415 ret = PTR_ERR(paths[i]);
424 opp_table->paths = paths;
431 icc_put(paths[i]);
434 kfree(paths);
655 pr_err("%s: Mismatch between %s and paths (%d %d)\n", __func__, name, count, table->path_count);