Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62004978 authored by Marc Gariepy's avatar Marc Gariepy Committed by Daniel Vetter
Browse files

fixing dmi match for hp t5745 and hp st5747 thin client

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: default avatarMarc Gariepy <mgariepy@ubuntu.com>
Reviewed-by: default avatarAdam Jackson <ajax@redhat.com>
Signed-Off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent e90f3b61
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -750,7 +750,7 @@ static const struct dmi_system_id intel_no_lvds[] = {
		.ident = "Hewlett-Packard t5745",
		.ident = "Hewlett-Packard t5745",
		.matches = {
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
			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",
		.ident = "Hewlett-Packard st5747",
		.matches = {
		.matches = {
			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
			DMI_MATCH(DMI_BOARD_NAME, "hp st5747"),
			DMI_MATCH(DMI_PRODUCT_NAME, "hp st5747"),
		},
		},
	},
	},
	{
	{