Re: [PATCH v2] asus-nb-wmi: Add wapf4 quirk for the X550VB

2014-10-27 Thread Darren Hart
On Sun, Oct 26, 2014 at 11:23:55AM +0100, Stanislaw Gruszka wrote:
> X550VB as many others Asus laptops need wapf4 quirk to make RFKILL
> switch be functional. Otherwise system boots with wireless card
> disabled and is only possible to enable it by suspend/resume.
> 
> Bug report:
> http://bugzilla.redhat.com/show_bug.cgi?id=1089731#c23
> 
> Reported-and-tested-by: Vratislav Podzimek 
> Signed-off-by: Stanislaw Gruszka 

Queued, thanks Stanislaw.

-- 
Darren Hart
Intel Open Source Technology Center
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v2] asus-nb-wmi: Add wapf4 quirk for the X550VB

2014-10-27 Thread Darren Hart
On Sun, Oct 26, 2014 at 11:23:55AM +0100, Stanislaw Gruszka wrote:
 X550VB as many others Asus laptops need wapf4 quirk to make RFKILL
 switch be functional. Otherwise system boots with wireless card
 disabled and is only possible to enable it by suspend/resume.
 
 Bug report:
 http://bugzilla.redhat.com/show_bug.cgi?id=1089731#c23
 
 Reported-and-tested-by: Vratislav Podzimek vpodz...@redhat.com
 Signed-off-by: Stanislaw Gruszka sgrus...@redhat.com

Queued, thanks Stanislaw.

-- 
Darren Hart
Intel Open Source Technology Center
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v2] asus-nb-wmi: Add wapf4 quirk for the X550VB

2014-10-26 Thread Stanislaw Gruszka
X550VB as many others Asus laptops need wapf4 quirk to make RFKILL
switch be functional. Otherwise system boots with wireless card
disabled and is only possible to enable it by suspend/resume.

Bug report:
http://bugzilla.redhat.com/show_bug.cgi?id=1089731#c23

Reported-and-tested-by: Vratislav Podzimek 
Signed-off-by: Stanislaw Gruszka 
---
v1 -> v2: update changelog

 drivers/platform/x86/asus-nb-wmi.c | 9 +
 1 file changed, 9 insertions(+)

diff --git a/drivers/platform/x86/asus-nb-wmi.c 
b/drivers/platform/x86/asus-nb-wmi.c
index 3a4951f..c1a6cd6 100644
--- a/drivers/platform/x86/asus-nb-wmi.c
+++ b/drivers/platform/x86/asus-nb-wmi.c
@@ -182,6 +182,15 @@ static const struct dmi_system_id asus_quirks[] = {
},
{
.callback = dmi_matched,
+   .ident = "ASUSTeK COMPUTER INC. X550VB",
+   .matches = {
+   DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+   DMI_MATCH(DMI_PRODUCT_NAME, "X550VB"),
+   },
+   .driver_data = _asus_wapf4,
+   },
+   {
+   .callback = dmi_matched,
.ident = "ASUSTeK COMPUTER INC. X55A",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v2] asus-nb-wmi: Add wapf4 quirk for the X550VB

2014-10-26 Thread Stanislaw Gruszka
X550VB as many others Asus laptops need wapf4 quirk to make RFKILL
switch be functional. Otherwise system boots with wireless card
disabled and is only possible to enable it by suspend/resume.

Bug report:
http://bugzilla.redhat.com/show_bug.cgi?id=1089731#c23

Reported-and-tested-by: Vratislav Podzimek vpodz...@redhat.com
Signed-off-by: Stanislaw Gruszka sgrus...@redhat.com
---
v1 - v2: update changelog

 drivers/platform/x86/asus-nb-wmi.c | 9 +
 1 file changed, 9 insertions(+)

diff --git a/drivers/platform/x86/asus-nb-wmi.c 
b/drivers/platform/x86/asus-nb-wmi.c
index 3a4951f..c1a6cd6 100644
--- a/drivers/platform/x86/asus-nb-wmi.c
+++ b/drivers/platform/x86/asus-nb-wmi.c
@@ -182,6 +182,15 @@ static const struct dmi_system_id asus_quirks[] = {
},
{
.callback = dmi_matched,
+   .ident = ASUSTeK COMPUTER INC. X550VB,
+   .matches = {
+   DMI_MATCH(DMI_SYS_VENDOR, ASUSTeK COMPUTER INC.),
+   DMI_MATCH(DMI_PRODUCT_NAME, X550VB),
+   },
+   .driver_data = quirk_asus_wapf4,
+   },
+   {
+   .callback = dmi_matched,
.ident = ASUSTeK COMPUTER INC. X55A,
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, ASUSTeK COMPUTER INC.),
-- 
1.8.3.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/