Lines Matching defs:data
874 return match ? match->data : NULL;
1103 static struct nvmem_device *__nvmem_device_get(void *data,
1104 int (*match)(struct device *dev, const void *data))
1110 dev = bus_find_device(&nvmem_bus_type, NULL, data, match);
1197 * @data: Data to pass to match function
1203 struct nvmem_device *nvmem_device_find(void *data,
1204 int (*match)(struct device *dev, const void *data))
1206 return __nvmem_device_get(data, match);
1210 static int devm_nvmem_device_match(struct device *dev, void *res, void *data)
1217 return *nvmem == data;
1516 static int devm_nvmem_cell_match(struct device *dev, void *res, void *data)
1523 return *c == data;
1868 * the length of the real data. Throw away the extra junk.
1882 * nvmem_cell_read_variable_le_u32() - Read up to 32-bits of data as a little endian number.
1913 * nvmem_cell_read_variable_le_u64() - Read up to 64-bits of data as a little endian number.