summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Mesman <ben@bnc.nl>2013-04-16 20:00:28 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-13 09:45:02 -0700
commit57e90e2cc1e073cd9a595c86d64717a07b6c85ee (patch)
tree5db1a733b8cdf3d3ccbf99bef6bc63fb198f1b99
parent15360c3f303d9d12b36611b2721a68451e9f6424 (diff)
downloadlinux-3.10-57e90e2cc1e073cd9a595c86d64717a07b6c85ee.tar.gz
linux-3.10-57e90e2cc1e073cd9a595c86d64717a07b6c85ee.tar.bz2
linux-3.10-57e90e2cc1e073cd9a595c86d64717a07b6c85ee.zip
drm/i915: no lvds quirk for hp t5740
commit 45a211d75137b1ac869a8a758a6667f15827a115 upstream. Last year, a patch was made for the "HP t5740e Thin Client" (see http://lists.freedesktop.org/archives/dri-devel/2012-May/023245.html). This device reports an lvds panel, but does not really have one. The predecessor of this device is the "hp t5740", which also does not have an lvds panel. This patch will add the same quirk for this device. Signed-off-by: Ben Mesman <ben@bnc.nl> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/gpu/drm/i915/intel_lvds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c
index 1ad59061ee4..207180d3000 100644
--- a/drivers/gpu/drm/i915/intel_lvds.c
+++ b/drivers/gpu/drm/i915/intel_lvds.c
@@ -747,10 +747,10 @@ static const struct dmi_system_id intel_no_lvds[] = {
},
{
.callback = intel_no_lvds_dmi_callback,
- .ident = "Hewlett-Packard HP t5740e Thin Client",
+ .ident = "Hewlett-Packard HP t5740",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
- DMI_MATCH(DMI_PRODUCT_NAME, "HP t5740e Thin Client"),
+ DMI_MATCH(DMI_PRODUCT_NAME, " t5740"),
},
},
{