From 76104862cccaeaa84fdd23e39f2610a96296291c Mon Sep 17 00:00:00 2001 From: Tasos Sahanidis Date: Sun, 14 Jul 2019 13:31:11 +0300 Subject: [Backport 76104862ccca] sky2: Disable MSI on P5W DH Deluxe The onboard sky2 NICs send IRQs after S3, resulting in ethernet not working after resume. Maskable MSI and MSI-X are also not supported, so fall back to INTx. Signed-off-by: Tasos Sahanidis Signed-off-by: David S. Miller --- src/sky2.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/sky2.c b/src/sky2.c index fe518c854d1fcc78d600f261926923ee2ed7d5aa..f518312ffe695470bf1dd4239d9e2b1b08e5ea54 100644 --- a/src/sky2.c +++ b/src/sky2.c @@ -4917,6 +4917,13 @@ static const struct dmi_system_id msi_blacklist[] = { DMI_MATCH(DMI_PRODUCT_NAME, "P-79"), }, }, + { + .ident = "ASUS P5W DH Deluxe", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTEK COMPUTER INC"), + DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"), + }, + }, {} }; -- 2.31.1