diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-11-24 11:26:32 +0100 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2014-12-03 19:10:13 +0100 |
commit | 841e11ccdf90c29a7778a5d5d553bc716c3d477a (patch) | |
tree | f01c4a845213106a20e8fd91992811887fc659a8 /drivers/platform | |
parent | hp_accel: Add support for HP ZBook 15 (diff) | |
download | linux-841e11ccdf90c29a7778a5d5d553bc716c3d477a.tar.xz linux-841e11ccdf90c29a7778a5d5d553bc716c3d477a.zip |
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>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/asus-nb-wmi.c | 9 |
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[] = { }, { .callback = dmi_matched, + .ident = "ASUSTeK COMPUTER INC. X551CA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "X551CA"), + }, + .driver_data = &quirk_asus_wapf4, + }, + { + .callback = dmi_matched, .ident = "ASUSTeK COMPUTER INC. X55A", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), |