aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-11-24 05:26:32 -0500
committerDarren Hart <dvhart@linux.intel.com>2014-12-03 13:10:13 -0500
commit841e11ccdf90c29a7778a5d5d553bc716c3d477a (patch)
treef01c4a845213106a20e8fd91992811887fc659a8
parent6583659e0f92e38079a8dd081e0a1181a0f37747 (diff)
asus-nb-wmi: Add another wapf=4 quirk
Wifi on this laptop does not work unless asus-nb-wmi.wapf=4 is specified on the kerne commandline, add a quirk for this. Cc: stable@vger.kernel.org BugLink: https://bugs.launchpad.net/bugs/1173681 Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Darren Hart <dvhart@linux.intel.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 c1a6cd66af42..abdaed34c728 100644
--- a/drivers/platform/x86/asus-nb-wmi.c
+++ b/drivers/platform/x86/asus-nb-wmi.c
@@ -191,6 +191,15 @@ static const struct dmi_system_id asus_quirks[] = {
191 }, 191 },
192 { 192 {
193 .callback = dmi_matched, 193 .callback = dmi_matched,
194 .ident = "ASUSTeK COMPUTER INC. X551CA",
195 .matches = {
196 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
197 DMI_MATCH(DMI_PRODUCT_NAME, "X551CA"),
198 },
199 .driver_data = &quirk_asus_wapf4,
200 },
201 {
202 .callback = dmi_matched,
194 .ident = "ASUSTeK COMPUTER INC. X55A", 203 .ident = "ASUSTeK COMPUTER INC. X55A",
195 .matches = { 204 .matches = {
196 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 205 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),