mirror of https://gitee.com/openkylin/linux.git
drm/i915: start writing infoframes at address 0 on gen 4
Make sure we're doing the right thing, just like we do on gen5+. Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
22509ec867
commit
1d4f85ac2d
|
@ -132,7 +132,7 @@ static void i9xx_write_infoframe(struct drm_encoder *encoder,
|
|||
else
|
||||
return;
|
||||
|
||||
val &= ~VIDEO_DIP_SELECT_MASK;
|
||||
val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
|
||||
val |= intel_infoframe_index(frame);
|
||||
|
||||
val |= VIDEO_DIP_ENABLE;
|
||||
|
|
Loading…
Reference in New Issue