Skip to content

Commit 8c1a8f1

Browse files
mattropeickle
authored andcommitted
drm/i915: Restore DP-E to VBT mapping table
We accidentally dropped matching for DVO_PORT_DPE from the VBT mapping table when we refactored the function. Restore it. Fixes: 4628142 ("drm/i915/rkl: provide port/phy mapping for vbt") Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20200606031803.3309624-1-matthew.d.roper@intel.com
1 parent 7ac2d25 commit 8c1a8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_bios.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ static enum port dvo_port_to_port(struct drm_i915_private *dev_priv,
16501650
[PORT_B] = { DVO_PORT_HDMIB, DVO_PORT_DPB, -1 },
16511651
[PORT_C] = { DVO_PORT_HDMIC, DVO_PORT_DPC, -1 },
16521652
[PORT_D] = { DVO_PORT_HDMID, DVO_PORT_DPD, -1 },
1653-
[PORT_E] = { DVO_PORT_CRT, DVO_PORT_HDMIE, -1 },
1653+
[PORT_E] = { DVO_PORT_HDMIE, DVO_PORT_DPE, DVO_PORT_CRT },
16541654
[PORT_F] = { DVO_PORT_HDMIF, DVO_PORT_DPF, -1 },
16551655
[PORT_G] = { DVO_PORT_HDMIG, DVO_PORT_DPG, -1 },
16561656
};

0 commit comments

Comments
 (0)