projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e90f3b6
)
fixing dmi match for hp t5745 and hp st5747 thin client
author
Marc Gariepy
<mgariepy@ubuntu.com>
Tue, 1 May 2012 17:37:57 +0000
(13:37 -0400)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Wed, 2 May 2012 19:41:33 +0000
(21:41 +0200)
Match the correct information which is DMI_PRODUCT_NAME instead of DMI_BOARD_NAME
See dmidecode information on launchpad for both thin client:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/911920
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/911916
Signed-off-by: Marc Gariepy <mgariepy@ubuntu.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_lvds.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/i915/intel_lvds.c
b/drivers/gpu/drm/i915/intel_lvds.c
index 30e2c82101de0d8cb0c841d97f77db6acfc501aa..9c71183629c2a08fa1e9bddae13cd12dde26429f 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_lvds.c
+++ b/
drivers/gpu/drm/i915/intel_lvds.c
@@
-750,7
+750,7
@@
static const struct dmi_system_id intel_no_lvds[] = {
.ident = "Hewlett-Packard t5745",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
- DMI_MATCH(DMI_
BOARD
_NAME, "hp t5745"),
+ DMI_MATCH(DMI_
PRODUCT
_NAME, "hp t5745"),
},
},
{
@@
-758,7
+758,7
@@
static const struct dmi_system_id intel_no_lvds[] = {
.ident = "Hewlett-Packard st5747",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
- DMI_MATCH(DMI_
BOARD
_NAME, "hp st5747"),
+ DMI_MATCH(DMI_
PRODUCT
_NAME, "hp st5747"),
},
},
{