]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Oct 2014 22:01:55 +0000 (15:01 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Oct 2014 22:01:55 +0000 (15:01 -0700)
added patches:
drm-radeon-add-connector-quirk-for-fujitsu-board.patch

queue-3.10/drm-radeon-add-connector-quirk-for-fujitsu-board.patch [new file with mode: 0644]
queue-3.10/series

diff --git a/queue-3.10/drm-radeon-add-connector-quirk-for-fujitsu-board.patch b/queue-3.10/drm-radeon-add-connector-quirk-for-fujitsu-board.patch
new file mode 100644 (file)
index 0000000..e797b41
--- /dev/null
@@ -0,0 +1,37 @@
+From 1952f24d0fa6292d65f886887af87ba8ac79b3ba Mon Sep 17 00:00:00 2001
+From: Alex Deucher <alexander.deucher@amd.com>
+Date: Mon, 8 Sep 2014 13:55:51 -0400
+Subject: drm/radeon: add connector quirk for fujitsu board
+
+From: Alex Deucher <alexander.deucher@amd.com>
+
+commit 1952f24d0fa6292d65f886887af87ba8ac79b3ba upstream.
+
+Vbios connector table lists non-existent VGA port.
+
+Bug:
+https://bugs.freedesktop.org/show_bug.cgi?id=83184
+
+Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/gpu/drm/radeon/radeon_atombios.c |    7 +++++++
+ 1 file changed, 7 insertions(+)
+
+--- a/drivers/gpu/drm/radeon/radeon_atombios.c
++++ b/drivers/gpu/drm/radeon/radeon_atombios.c
+@@ -463,6 +463,13 @@ static bool radeon_atom_apply_quirks(str
+               }
+       }
++      /* Fujitsu D3003-S2 board lists DVI-I as DVI-I and VGA */
++      if ((dev->pdev->device == 0x9805) &&
++          (dev->pdev->subsystem_vendor == 0x1734) &&
++          (dev->pdev->subsystem_device == 0x11bd)) {
++              if (*connector_type == DRM_MODE_CONNECTOR_VGA)
++                      return false;
++      }
+       return true;
+ }
index 5a00031742c0222c883207bce3d273472b18af98..53bb3af9356e97bb984d89f150083e0922bf29e0 100644 (file)
@@ -30,3 +30,4 @@ drm-i915-remove-bogus-__init-annotation-from-dmi-callbacks.patch
 drm-i915-wait-for-vblank-before-enabling-the-tv-encoder.patch
 drm-ast-ast2000-cannot-be-detected-correctly.patch
 drm-vmwgfx-fix-a-potential-infinite-spin-waiting-for-fifo-idle.patch
+drm-radeon-add-connector-quirk-for-fujitsu-board.patch