Lines Matching refs:path
34 /* Interconnect path bandwidths (each times 1000 bytes per second) */
65 struct icc_path *path;
67 path = of_icc_get(dev, name);
68 if (IS_ERR(path))
70 PTR_ERR(path), name);
72 return path;
78 struct icc_path *path;
80 path = ipa_interconnect_init_one(dev, "memory");
81 if (IS_ERR(path))
83 clock->memory_path = path;
85 path = ipa_interconnect_init_one(dev, "imem");
86 if (IS_ERR(path))
88 clock->imem_path = path;
90 path = ipa_interconnect_init_one(dev, "config");
91 if (IS_ERR(path))
93 clock->config_path = path;
102 return PTR_ERR(path);