Lines Matching defs:table
487 struct nvmem_cell_table *table;
492 list_for_each_entry(table, &nvmem_cell_tables, node) {
493 if (strcmp(nvmem_dev_name(nvmem), table->nvmem_name) == 0) {
494 for (i = 0; i < table->ncells; i++) {
495 info = &table->cells[i];
1588 * nvmem_add_cell_table() - register a table of cell info entries
1590 * @table: table of cell info entries
1592 void nvmem_add_cell_table(struct nvmem_cell_table *table)
1595 list_add_tail(&table->node, &nvmem_cell_tables);
1601 * nvmem_del_cell_table() - remove a previously registered cell info table
1603 * @table: table of cell info entries
1605 void nvmem_del_cell_table(struct nvmem_cell_table *table)
1608 list_del(&table->node);