From 1ab533cdce918676f5c6387e5140fe6fc3e4d69f Mon Sep 17 00:00:00 2001 From: Andreas Grapentin Date: Tue, 13 Feb 2018 10:15:08 +0100 Subject: libre/linux-libre: updated to 4.15.2_gnu; split armv7h kernel into linux-libre-armv7 --- ...p-Only-use-the-alternate-fixed-mode-if-it.patch | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 libre/linux-libre/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch (limited to 'libre/linux-libre/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch') diff --git a/libre/linux-libre/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch b/libre/linux-libre/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch new file mode 100644 index 000000000..22141236e --- /dev/null +++ b/libre/linux-libre/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch @@ -0,0 +1,42 @@ +From f256ec7564d904b5c245c34a7cb091e6912b22c3 Mon Sep 17 00:00:00 2001 +Message-Id: +In-Reply-To: +References: +From: Jim Bride +Date: Mon, 6 Nov 2017 13:38:57 -0800 +Subject: [PATCH 2/3] drm/i915/edp: Only use the alternate fixed mode if it's + asked for + +In commit dc911f5bd8aa ("drm/i915/edp: Allow alternate fixed mode for +eDP if available."), the patch allows for the use of an alternate fixed +mode if it is available, but the patch was not ensuring that the only +time the alternate mode is used is when it is specifically requested. +This patch adds an additional comparison to intel_edp_compare_alt_mode +to ensure that we only use the alternate mode if it is directly +requested. + +Fixes: dc911f5bd8aac ("Allow alternate fixed mode for eDP if available.") +Cc: David Weinehall +Cc: Rodrigo Vivi +Signed-off-by: Jim Bride +--- + drivers/gpu/drm/i915/intel_dp.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c +index 158438bb0389..69b16df868ea 100644 +--- a/drivers/gpu/drm/i915/intel_dp.c ++++ b/drivers/gpu/drm/i915/intel_dp.c +@@ -1616,7 +1616,8 @@ static bool intel_edp_compare_alt_mode(struct drm_display_mode *m1, + m1->vdisplay == m2->vdisplay && + m1->vsync_start == m2->vsync_start && + m1->vsync_end == m2->vsync_end && +- m1->vtotal == m2->vtotal); ++ m1->vtotal == m2->vtotal && ++ m1->vrefresh == m2->vrefresh); + return bres; + } + +-- +2.16.1 + -- cgit v1.2.3