mirror of https://gitee.com/openkylin/linux.git
drm/i915: Reorder the AUX_CTL bits in descending order
So it's easier to compare what we program with the documentation, not having to jump at all. Signed-off-by: Damien Lespiau <damien.lespiau@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
5ed12a1907
commit
788d4433dc
|
@ -435,14 +435,14 @@ static uint32_t i9xx_get_aux_send_ctl(struct intel_dp *intel_dp,
|
||||||
timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
|
timeout = DP_AUX_CH_CTL_TIME_OUT_400us;
|
||||||
|
|
||||||
return DP_AUX_CH_CTL_SEND_BUSY |
|
return DP_AUX_CH_CTL_SEND_BUSY |
|
||||||
|
DP_AUX_CH_CTL_DONE |
|
||||||
(has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
|
(has_aux_irq ? DP_AUX_CH_CTL_INTERRUPT : 0) |
|
||||||
|
DP_AUX_CH_CTL_TIME_OUT_ERROR |
|
||||||
timeout |
|
timeout |
|
||||||
|
DP_AUX_CH_CTL_RECEIVE_ERROR |
|
||||||
(send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
|
(send_bytes << DP_AUX_CH_CTL_MESSAGE_SIZE_SHIFT) |
|
||||||
(precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
|
(precharge << DP_AUX_CH_CTL_PRECHARGE_2US_SHIFT) |
|
||||||
(aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT) |
|
(aux_clock_divider << DP_AUX_CH_CTL_BIT_CLOCK_2X_SHIFT);
|
||||||
DP_AUX_CH_CTL_DONE |
|
|
||||||
DP_AUX_CH_CTL_TIME_OUT_ERROR |
|
|
||||||
DP_AUX_CH_CTL_RECEIVE_ERROR;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in New Issue