Skip to content

Commit

Permalink
drm/i915: quirk away phantom LVDS on Intel's D525MW mainboard
Browse files Browse the repository at this point in the history
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=65256

Signed-off-by: Jani Nikula <[email protected]>
Reported-by: Cornel Panceac <[email protected]>
Cc: Chris Wilson <[email protected]>
Cc: <[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]>
  • Loading branch information
jnikula authored and torvalds committed Jul 3, 2013
1 parent e5614f0 commit dcf6d29
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/gpu/drm/i915/intel_lvds.c
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,14 @@ static const struct dmi_system_id intel_no_lvds[] = {
DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"),
},
},
{
.callback = intel_no_lvds_dmi_callback,
.ident = "Intel D525MW",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
DMI_EXACT_MATCH(DMI_BOARD_NAME, "D525MW"),
},
},

{ } /* terminating entry */
};
Expand Down

0 comments on commit dcf6d29

Please sign in to comment.