From: Greg Kroah-Hartman Date: Thu, 2 Oct 2014 22:01:55 +0000 (-0700) Subject: 3.10-stable patches X-Git-Tag: v3.16.4~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e7cad9bfe8e26faebe52652cb714107645967b1;p=thirdparty%2Fkernel%2Fstable-queue.git 3.10-stable patches added patches: drm-radeon-add-connector-quirk-for-fujitsu-board.patch --- 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 index 00000000000..e797b41cc3c --- /dev/null +++ b/queue-3.10/drm-radeon-add-connector-quirk-for-fujitsu-board.patch @@ -0,0 +1,37 @@ +From 1952f24d0fa6292d65f886887af87ba8ac79b3ba Mon Sep 17 00:00:00 2001 +From: Alex Deucher +Date: Mon, 8 Sep 2014 13:55:51 -0400 +Subject: drm/radeon: add connector quirk for fujitsu board + +From: Alex Deucher + +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 +Signed-off-by: Greg Kroah-Hartman + +--- + 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; + } diff --git a/queue-3.10/series b/queue-3.10/series index 5a00031742c..53bb3af9356 100644 --- a/queue-3.10/series +++ b/queue-3.10/series @@ -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