Lines Matching defs:table
70 /* Skip voltage update if the opp table is not available */
136 struct cpufreq_frequency_table *table;
143 table = kcalloc(LUT_MAX_ENTRIES + 1, sizeof(*table), GFP_KERNEL);
144 if (!table)
160 dev_err(cpu_dev, "Invalid opp table in device tree\n");
161 kfree(table);
186 table[i].frequency = freq;
191 table[i].frequency = CPUFREQ_ENTRY_INVALID;
195 table[i].frequency = CPUFREQ_ENTRY_INVALID;
200 * end of table
203 struct cpufreq_frequency_table *prev = &table[i - 1];
225 table[i].frequency = CPUFREQ_TABLE_END;
226 policy->freq_table = table;