Lines Matching defs:table
189 * Create a default correction table for PWM values to create linear brightness
203 * more values in the table.
213 /* Fill the table using the cie1931 algorithm */
237 unsigned int *table;
257 * set a default table of brightness levels will be used.
290 * and creates a new pre-computed table.
297 * brightness-levels table, otherwise we can't interpolate
323 * Create a new table of brightness levels with all the
326 size = sizeof(*table) * num_levels;
327 table = devm_kzalloc(dev, size, GFP_KERNEL);
328 if (!table)
331 /* Fill the interpolated table. */
338 table[levels_count] = value;
343 table[levels_count] = data->levels[i];
347 table[levels_count] = data->levels[i];
351 * brightness levels table and replace for the
352 * new interpolated table.
355 data->levels = table;
540 * via the PWM lookup table.
573 * not set, use the default brightness table. For the DT case,
586 "failed to setup default brightness table\n");