Searched defs:send_bytes (Results 1 - 2 of 2) sorted by relevance

/drivers/gpu/drm/radeon/
H A Datombios_dp.c53 u8 *send, int send_bytes,
68 memcpy(base, send, send_bytes);
111 u16 address, u8 *send, u8 send_bytes, u8 delay)
116 int msg_bytes = send_bytes + 4;
120 if (send_bytes > 16)
126 msg[3] = (msg_bytes << 4) | (send_bytes - 1);
127 memcpy(&msg[4], send, send_bytes);
137 return send_bytes;
52 radeon_process_aux_ch(struct radeon_i2c_chan *chan, u8 *send, int send_bytes, u8 *recv, int recv_size, u8 delay, u8 *ack) argument
110 radeon_dp_aux_native_write(struct radeon_connector *radeon_connector, u16 address, u8 *send, u8 send_bytes, u8 delay) argument
/drivers/gpu/drm/i915/
H A Dintel_dp.c343 uint8_t *send, int send_bytes,
397 for (i = 0; i < send_bytes; i += 4)
399 pack_aux(send + i, send_bytes - i));
405 (send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
464 uint16_t address, uint8_t *send, int send_bytes)
472 if (send_bytes > 16)
477 msg[3] = send_bytes - 1;
478 memcpy(&msg[4], send, send_bytes);
479 msg_bytes = send_bytes + 4;
491 return send_bytes;
342 intel_dp_aux_ch(struct intel_dp *intel_dp, uint8_t *send, int send_bytes, uint8_t *recv, int recv_size) argument
463 intel_dp_aux_native_write(struct intel_dp *intel_dp, uint16_t address, uint8_t *send, int send_bytes) argument
[all...]

Completed in 68 milliseconds