Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <tasos@tasossah.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Tasos Sahanidis and committed by
David S. Miller
76104862 79f5943a

+7
+7
drivers/net/ethernet/marvell/sky2.c
··· 4917 4917 DMI_MATCH(DMI_PRODUCT_NAME, "P-79"), 4918 4918 }, 4919 4919 }, 4920 + { 4921 + .ident = "ASUS P5W DH Deluxe", 4922 + .matches = { 4923 + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTEK COMPUTER INC"), 4924 + DMI_MATCH(DMI_PRODUCT_NAME, "P5W DH Deluxe"), 4925 + }, 4926 + }, 4920 4927 {} 4921 4928 }; 4922 4929