Blame SOURCES/0005-sky2-Disable-MSI-on-yet-another-ASUS-boards-P6Xxxx.patch
|
Kmods SIG |
6dd491 |
From 189308d5823a089b56e2299cd96589507dac7319 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
6dd491 |
From: Takashi Iwai <tiwai@suse.de>
|
|
Kmods SIG |
6dd491 |
Date: Wed, 28 Aug 2019 08:31:19 +0200
|
|
Kmods SIG |
6dd491 |
Subject: [Backport 189308d5823a] sky2: Disable MSI on yet another ASUS boards
|
|
Kmods SIG |
6dd491 |
(P6Xxxx)
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
A similar workaround for the suspend/resume problem is needed for yet
|
|
Kmods SIG |
6dd491 |
another ASUS machines, P6X models. Like the previous fix, the BIOS
|
|
Kmods SIG |
6dd491 |
doesn't provide the standard DMI_SYS_* entry, so again DMI_BOARD_*
|
|
Kmods SIG |
6dd491 |
entries are used instead.
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
Reported-and-tested-by: SteveM <swm@swm1.com>
|
|
Kmods SIG |
6dd491 |
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
|
Kmods SIG |
6dd491 |
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
Kmods SIG |
6dd491 |
---
|
|
Kmods SIG |
6dd491 |
src/sky2.c | 7 +++++++
|
|
Kmods SIG |
6dd491 |
1 file changed, 7 insertions(+)
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
diff --git a/src/sky2.c b/src/sky2.c
|
|
Kmods SIG |
6dd491 |
index a01c75ede871a378ac6e32e7b939c4bdd1d112a6..e0363870f3a55c2bb784a55e9d3ef1aafcf89e4a 100644
|
|
Kmods SIG |
6dd491 |
--- a/src/sky2.c
|
|
Kmods SIG |
6dd491 |
+++ b/src/sky2.c
|
|
Kmods SIG |
6dd491 |
@@ -4931,6 +4931,13 @@ static const struct dmi_system_id msi_blacklist[] = {
|
|
Kmods SIG |
6dd491 |
DMI_MATCH(DMI_BOARD_NAME, "P6T"),
|
|
Kmods SIG |
6dd491 |
},
|
|
Kmods SIG |
6dd491 |
},
|
|
Kmods SIG |
6dd491 |
+ {
|
|
Kmods SIG |
6dd491 |
+ .ident = "ASUS P6X",
|
|
Kmods SIG |
6dd491 |
+ .matches = {
|
|
Kmods SIG |
6dd491 |
+ DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
|
|
Kmods SIG |
6dd491 |
+ DMI_MATCH(DMI_BOARD_NAME, "P6X"),
|
|
Kmods SIG |
6dd491 |
+ },
|
|
Kmods SIG |
6dd491 |
+ },
|
|
Kmods SIG |
6dd491 |
{}
|
|
Kmods SIG |
6dd491 |
};
|
|
Kmods SIG |
6dd491 |
|
|
Kmods SIG |
6dd491 |
--
|
|
Kmods SIG |
6dd491 |
2.31.1
|
|
Kmods SIG |
6dd491 |
|