Skip to content

Commit

Permalink
drm/i915: Avoid incorrect returning for some platforms
Browse files Browse the repository at this point in the history
Signed-off-by: Sonika Jindal <sonika.jindal@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Sonika Jindal authored and Daniel Vetter committed Jul 23, 2014
1 parent 3abfce7 commit f227ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
struct intel_encoder *encoder;
int count = 0, count_hdmi = 0;

if (!HAS_PCH_SPLIT(dev))
if (HAS_GMCH_DISPLAY(dev))
return false;

list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
Expand Down

0 comments on commit f227ae9

Please sign in to comment.