mirror of https://gitee.com/openkylin/linux.git
drm/i915: Send out the full AUX address
AUX addresses are 20 bits long. Send out the entire address instead of just the low 16 bits. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
eb0b44adc0
commit
d2d9cbbd22
|
@ -942,8 +942,9 @@ intel_dp_aux_transfer(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
|
|||
size_t txsize, rxsize;
|
||||
int ret;
|
||||
|
||||
txbuf[0] = msg->request << 4;
|
||||
txbuf[1] = msg->address >> 8;
|
||||
txbuf[0] = (msg->request << 4) |
|
||||
((msg->address >> 16) & 0xf);
|
||||
txbuf[1] = (msg->address >> 8) & 0xff;
|
||||
txbuf[2] = msg->address & 0xff;
|
||||
txbuf[3] = msg->size - 1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue