Lines Matching defs:vcount
486 int supplies = opp_table->regulator_count, vcount, icount, ret, i, j;
527 vcount = of_property_count_u32_elems(opp->np, name);
528 if (vcount < 0) {
530 __func__, name, vcount);
531 return vcount;
535 if (vcount != supplies && vcount != supplies * 3) {
537 __func__, name, vcount, supplies);
541 microvolt = kmalloc_array(vcount, sizeof(*microvolt), GFP_KERNEL);
545 ret = of_property_read_u32_array(opp->np, name, microvolt, vcount);
601 if (vcount == supplies) {