Skip to content

Commit 9e30fd2

Browse files
Ondrej Zarybjorn-helgaas
authored andcommitted
PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold
The quirk for Elo i2 introduced in commit 92597f9 ("PCI/PM: Avoid putting Elo i2 PCIe Ports in D3cold") is also needed by EloPOS E2/S2/H2 which uses the same Continental Z2 board. Change the quirk to match the board instead of system. Link: https://bugzilla.kernel.org/show_bug.cgi?id=215715 Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ondrej Zary <[email protected]> Signed-off-by: Bjorn Helgaas <[email protected]> Cc: [email protected]
1 parent 7b3ba09 commit 9e30fd2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/pci/pci.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2956,13 +2956,13 @@ static const struct dmi_system_id bridge_d3_blacklist[] = {
29562956
{
29572957
/*
29582958
* Downstream device is not accessible after putting a root port
2959-
* into D3cold and back into D0 on Elo i2.
2959+
* into D3cold and back into D0 on Elo Continental Z2 board
29602960
*/
2961-
.ident = "Elo i2",
2961+
.ident = "Elo Continental Z2",
29622962
.matches = {
2963-
DMI_MATCH(DMI_SYS_VENDOR, "Elo Touch Solutions"),
2964-
DMI_MATCH(DMI_PRODUCT_NAME, "Elo i2"),
2965-
DMI_MATCH(DMI_PRODUCT_VERSION, "RevB"),
2963+
DMI_MATCH(DMI_BOARD_VENDOR, "Elo Touch Solutions"),
2964+
DMI_MATCH(DMI_BOARD_NAME, "Geminilake"),
2965+
DMI_MATCH(DMI_BOARD_VERSION, "Continental Z2"),
29662966
},
29672967
},
29682968
#endif

0 commit comments

Comments
 (0)