diff options
author | Marc Gariepy <mgariepy@ubuntu.com> | 2012-02-09 09:35:21 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-02-27 05:12:38 -0500 |
commit | f5b8a7ed0405d48fd096acce48fbefbed77fb055 (patch) | |
tree | 9bef1256342911feaa9841f042847601da23d7fb /drivers/gpu | |
parent | d12d04512c4430e29daede7f24b97f83f8cf259a (diff) |
drm/i915: Ignore LVDS on hp t5745 and hp st5747 thin client
Add a no_lvds quirk for the HP t5745 and HP st5747 thin clients
dmidecode for those thin clients are attached in thoses bugs:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/911916
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/911920
Signed-off-by: Marc Gariepy <mgariepy@ubuntu.com>
Acked-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/intel_lvds.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index b103c3b2bfee..c5c0973af8a1 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c | |||
@@ -739,6 +739,22 @@ static const struct dmi_system_id intel_no_lvds[] = { | |||
739 | DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"), | 739 | DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"), |
740 | }, | 740 | }, |
741 | }, | 741 | }, |
742 | { | ||
743 | .callback = intel_no_lvds_dmi_callback, | ||
744 | .ident = "Hewlett-Packard t5745", | ||
745 | .matches = { | ||
746 | DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), | ||
747 | DMI_MATCH(DMI_BOARD_NAME, "hp t5745"), | ||
748 | }, | ||
749 | }, | ||
750 | { | ||
751 | .callback = intel_no_lvds_dmi_callback, | ||
752 | .ident = "Hewlett-Packard st5747", | ||
753 | .matches = { | ||
754 | DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), | ||
755 | DMI_MATCH(DMI_BOARD_NAME, "hp st5747"), | ||
756 | }, | ||
757 | }, | ||
742 | 758 | ||
743 | { } /* terminating entry */ | 759 | { } /* terminating entry */ |
744 | }; | 760 | }; |