Lines Matching defs:ranges
194 struct dpll_pin_frequency *ranges;
270 * DPLL core pin properties requires list of frequency ranges.
284 /* Allocate frequency ranges list and fill it */
285 ranges = kcalloc(num_freqs, sizeof(*ranges), GFP_KERNEL);
286 if (!ranges) {
291 /* Convert list of frequencies to list of frequency ranges but
298 ranges[j] = freq;
303 /* Save number of freq ranges and pointer to them into pin properties */
304 props->dpll_props.freq_supported = ranges;
329 /* Free supported frequency ranges list if it is present */