Lines Matching defs:data
35 * HDMI source and HDMI sink to exchange data. The same I2C interface that
42 * drm_scdc_read - read a block of data from SCDC
48 * Reads a block of data from SCDC, starting at a given offset.
82 * drm_scdc_write - write a block of data to SCDC
85 * @buffer: block of data to write
88 * Writes a block of data to SCDC, starting at a given offset.
102 void *data;
105 data = kmalloc(1 + size, GFP_KERNEL);
106 if (!data)
109 msg.buf = data;
111 memcpy(data, &offset, sizeof(offset));
112 memcpy(data + 1, buffer, size);
116 kfree(data);