Lines Matching defs:table
29 * @table: the div table that the divider supports
38 const struct clk_div_table *table;
54 return divider_recalc_rate(hw, parent_rate, val, dclk->table,
63 return divider_round_rate(hw, rate, prate, dclk->table,
75 value = divider_get_val(rate, parent_rate, dclk->table,
107 struct clk_div_table *table;
116 /* Init the divider table */
120 table = kcalloc(max_div + 1, sizeof(*table), GFP_KERNEL);
121 if (!table) {
127 table[i].div = min_div + i;
128 table[i].val = table[i].div - 1;
144 div->table = table;
149 kfree(table);