aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <[email protected]>2013-07-03 15:05:03 -0700
committerLinus Torvalds <[email protected]>2013-07-03 16:07:42 -0700
commite5614f0c2d0f4d7f0b8ef745d34593baf2c5dbf8 (patch)
treedf0ec25916c6f647265ff8a4af18bf4c5c164af8
parent5017b2851373ee15c7035151853bb1448800cae2 (diff)
drm/i915: quirk away phantom LVDS on Intel's D510MO mainboard
This replaceable mainboard only has a VGA-out, yet it claims to also have a connected LVDS header. Addresses https://bugs.freedesktop.org/show_bug.cgi?id=63860 [[email protected]: use DMI_EXACT_MATCH for board name.] Signed-off-by: Chris Wilson <[email protected]> Signed-off-by: Jani Nikula <[email protected]> Reported-by: <[email protected]> Cc: Cornel Panceac <[email protected]> Acked-by: Daniel Vetter <[email protected]> Cc: Greg KH <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-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 29412cc89c7a..5716cf340539 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -869,6 +869,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
},
},
+ {
+ .callback = intel_no_lvds_dmi_callback,
+ .ident = "Intel D510MO",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
+ DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"),
+ },
+ },
{ } /* terminating entry */
};