diff options
author | Josh Boyer <jwboyer@fedoraproject.org> | 2015-12-10 08:23:16 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2015-12-10 08:23:47 -0500 |
commit | db2204367be9d48268aeae97db062e2a328e2edb (patch) | |
tree | 3d2687e6206f23c80393461a54b726a104ebe692 /ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch | |
parent | c5e1225d7e383b9d9b2151cd973498940a556bc5 (diff) | |
download | kernel-db2204367be9d48268aeae97db062e2a328e2edb.tar.gz kernel-db2204367be9d48268aeae97db062e2a328e2edb.tar.xz kernel-db2204367be9d48268aeae97db062e2a328e2edb.zip |
Fix rfkill issues on ideapad Y700-17ISK (rhbz 1286293)
Diffstat (limited to 'ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch')
-rw-r--r-- | ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch b/ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch new file mode 100644 index 000000000..16788f756 --- /dev/null +++ b/ideapad-laptop-Add-Lenovo-ideapad-Y700-17ISK-to-no_h.patch @@ -0,0 +1,40 @@ +From 14b627c610f93c2700f9a3825ac10c35d51acfe4 Mon Sep 17 00:00:00 2001 +From: Josh Boyer <jwboyer@fedoraproject.org> +Date: Mon, 7 Dec 2015 13:50:38 -0500 +Subject: [PATCH] ideapad-laptop: Add Lenovo ideapad Y700-17ISK to no_hw_rfkill + dmi list + +One of the newest ideapad models also lacks a physical hw rfkill switch, +and trying to read the hw rfkill switch through the ideapad module +causes it to always reported blocking breaking wifi. + +Fix it by adding this model to the DMI list. + +BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1286293 +Cc: stable@vger.kernel.org +Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org> +--- + drivers/platform/x86/ideapad-laptop.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c +index a313dfc0245f..d28db0e793df 100644 +--- a/drivers/platform/x86/ideapad-laptop.c ++++ b/drivers/platform/x86/ideapad-laptop.c +@@ -865,6 +865,13 @@ static const struct dmi_system_id no_hw_rfkill_list[] = { + }, + }, + { ++ .ident = "Lenovo ideapad Y700-17ISK", ++ .matches = { ++ DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), ++ DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad Y700-17ISK"), ++ }, ++ }, ++ { + .ident = "Lenovo Yoga 2 11 / 13 / Pro", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), +-- +2.5.0 + |