Skip to content

Commit 6334936

Browse files
tiwaigregkh
authored andcommitted
sky2: Disable MSI on ASUS P6T
[ Upstream commit a261e37 ] The onboard sky2 NIC on ASUS P6T WS PRO doesn't work after PM resume due to the infamous IRQ problem. Disabling MSI works around it, so let's add it to the blacklist. Unfortunately the BIOS on the machine doesn't fill the standard DMI_SYS_* entry, so we pick up DMI_BOARD_* entries instead. BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1142496 Reported-and-tested-by: Marcus Seyfarth <m.seyfarth@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 7c8f2c5 commit 6334936

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • drivers/net/ethernet/marvell

drivers/net/ethernet/marvell/sky2.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4939,6 +4939,13 @@ static const struct dmi_system_id msi_blacklist[] = {
49394939
DMI_MATCH(DMI_PRODUCT_NAME, "P-79"),
49404940
},
49414941
},
4942+
{
4943+
.ident = "ASUS P6T",
4944+
.matches = {
4945+
DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
4946+
DMI_MATCH(DMI_BOARD_NAME, "P6T"),
4947+
},
4948+
},
49424949
{}
49434950
};
49444951

0 commit comments

Comments
 (0)