Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/i915: quirk away phantom LVDS on Intel's D525MW 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=65256

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reported-by: Cornel Panceac <cpanceac@gmail.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: <annndddrr@gmail.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jani Nikula and committed by
Linus Torvalds
dcf6d294 e5614f0c

+8
+8
drivers/gpu/drm/i915/intel_lvds.c
··· 877 877 DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"), 878 878 }, 879 879 }, 880 + { 881 + .callback = intel_no_lvds_dmi_callback, 882 + .ident = "Intel D525MW", 883 + .matches = { 884 + DMI_MATCH(DMI_BOARD_VENDOR, "Intel"), 885 + DMI_EXACT_MATCH(DMI_BOARD_NAME, "D525MW"), 886 + }, 887 + }, 880 888 881 889 { } /* terminating entry */ 882 890 };