aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-07-14 03:14:35 -0400
committerMatthew Garrett <matthew.garrett@nebula.com>2014-08-16 04:23:51 -0400
commit22ba58c8abea9e948d406776b9252024a30bd45c (patch)
tree62d099b46cf53ef7d14cc2d0b0adfddcb1733309
parentc66263a368490a200a65639ff826f633090936a9 (diff)
asus-nb-wmi: Add wapf4 quirk for the X550CL
As reported here: https://bugs.launchpad.net/bugs/1277959 the X550CL needs wapf=4 too. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
-rw-r--r--drivers/platform/x86/asus-nb-wmi.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c
index 8cbf488df0f3..c5da5b7c4a10 100644
--- a/drivers/platform/x86/asus-nb-wmi.c
+++ b/drivers/platform/x86/asus-nb-wmi.c
@@ -150,6 +150,15 @@ static struct dmi_system_id asus_quirks[] = {
150 }, 150 },
151 { 151 {
152 .callback = dmi_matched, 152 .callback = dmi_matched,
153 .ident = "ASUSTeK COMPUTER INC. X550CL",
154 .matches = {
155 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
156 DMI_MATCH(DMI_PRODUCT_NAME, "X550CL"),
157 },
158 .driver_data = &quirk_asus_wapf4,
159 },
160 {
161 .callback = dmi_matched,
153 .ident = "ASUSTeK COMPUTER INC. X55A", 162 .ident = "ASUSTeK COMPUTER INC. X55A",
154 .matches = { 163 .matches = {
155 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 164 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),