Lines Matching refs:tbl
2000 struct freq_map_table *tbl;
2019 tbl = kzalloc(sizeof(*tbl) * (count / 3 + 1), GFP_KERNEL);
2020 if (!tbl)
2024 of_property_read_u32_index(np, porp_name, 3 * i, &tbl[i].min);
2026 &tbl[i].max);
2029 tbl[i].freq = temp_freq * 1000;
2032 tbl[i].min = 0;
2033 tbl[i].max = 0;
2034 tbl[i].freq = DMCFREQ_TABLE_END;
2036 *table = tbl;
2044 struct rl_map_table *tbl;
2062 tbl = kzalloc(sizeof(*tbl) * (count / 2 + 1), GFP_KERNEL);
2063 if (!tbl)
2067 of_property_read_u32_index(np, porp_name, 2 * i, &tbl[i].pn);
2069 &tbl[i].rl);
2072 tbl[i].pn = 0;
2073 tbl[i].rl = DMCFREQ_TABLE_END;
2075 *table = tbl;