Lines Matching refs:cell
29 TEE_Result (*read_cell)(struct nvmem_cell *cell, uint8_t *data);
30 void (*put_cell)(struct nvmem_cell *cell);
58 void *data, struct nvmem_cell **cell);
93 const char *name, struct nvmem_cell **cell);
118 struct nvmem_cell *cell);
125 static inline void nvmem_put_cell(struct nvmem_cell *cell) in nvmem_put_cell() argument
127 if (cell->ops->put_cell) in nvmem_put_cell()
128 cell->ops->put_cell(cell); in nvmem_put_cell()
136 static inline TEE_Result nvmem_cell_read(struct nvmem_cell *cell, in nvmem_cell_read() argument
139 if (!cell->ops->read_cell) in nvmem_cell_read()
142 return cell->ops->read_cell(cell, data); in nvmem_cell_read()
153 TEE_Result nvmem_cell_malloc_and_read(struct nvmem_cell *cell,
177 struct nvmem_cell **cell __unused) in nvmem_get_cell_by_index()
184 struct nvmem_cell *cell __unused) in nvmem_cell_parse_dt()
189 static inline void nvmem_put_cell(struct nvmem_cell *cell __unused) in nvmem_put_cell()