aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAnisse Astier <anisse@astier.eu>2012-03-07 12:36:35 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-13 11:14:06 -0400
commitb51aa5a05a594d19b900b23e54b401f453be2f90 (patch)
tree1882290c17aef96c830b1ebeea26893023c23165 /drivers/gpu
parentdf03e202e63939fd43665ef933ec88e20ca0078c (diff)
drm/i915: no-lvds quirk on MSI DC500
commit 97effadb65ed08809e1720c8d3ee80b73a93665c upstream. This hardware doesn't have an LVDS, it's a desktop box. Fix incorrect LVDS detection. Signed-off-by: Anisse Astier <anisse@astier.eu> Acked-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/intel_lvds.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index 21257f8232d..ff85a91eb01 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -743,6 +743,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
743 DMI_MATCH(DMI_PRODUCT_NAME, "EB1007"), 743 DMI_MATCH(DMI_PRODUCT_NAME, "EB1007"),
744 }, 744 },
745 }, 745 },
746 {
747 .callback = intel_no_lvds_dmi_callback,
748 .ident = "MSI Wind Box DC500",
749 .matches = {
750 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
751 DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
752 },
753 },
746 754
747 { } /* terminating entry */ 755 { } /* terminating entry */
748}; 756};