drm/i915: Setting legacy palette correctly for different platforms
v2: Adding !HAS_GMCH_DISPLAY(dev) Signed-off-by: Sonika Jindal <sonika.jindal@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
f227ae9e76
commit
7a1db49af6
1 changed files with 1 additions and 1 deletions
|
@ -3847,7 +3847,7 @@ static void intel_crtc_load_lut(struct drm_crtc *crtc)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* use legacy palette for Ironlake */
|
/* use legacy palette for Ironlake */
|
||||||
if (HAS_PCH_SPLIT(dev))
|
if (!HAS_GMCH_DISPLAY(dev))
|
||||||
palreg = LGC_PALETTE(pipe);
|
palreg = LGC_PALETTE(pipe);
|
||||||
|
|
||||||
/* Workaround : Do not read or write the pipe palette/gamma data while
|
/* Workaround : Do not read or write the pipe palette/gamma data while
|
||||||
|
|
Loading…
Reference in a new issue