Lines Matching defs:data
52 * Thus we use ARCH_DMA_MINALIGN for data[] which will force the same
55 u8 __aligned(ARCH_DMA_MINALIGN) data[];
74 dr->node.release(dev, dr->node.size ? *(void **)&dr->data : NULL);
100 memset(dr, 0, offsetof(struct drmres, data));
139 void *data, const char *name)
144 dr = alloc_dr(action, data ? sizeof(void*) : 0,
149 name, data);
154 if (data) {
155 void_ptr = (void **)&dr->data;
156 *void_ptr = data;
167 void *data, const char *name)
171 ret = __drmm_add_action(dev, action, data, name);
173 action(dev, data);
203 return dr->data;
236 * @data: memory allocation to be freed
242 void drmm_kfree(struct drm_device *dev, void *data)
247 if (!data)
252 if (dr->data == data) {