From mboxrd@z Thu Jan 1 00:00:00 1970 From: Darren Hart Subject: Re: [PATCH 1/1] asus-nb-wmi: Add wapf4 quirk for the X302UA Date: Tue, 4 Apr 2017 09:52:12 -0700 Message-ID: <20170404165212.GF5936@fury> References: <4a7fe8c6-e790-e855-1571-24603c5ca80f@vatsul.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from bombadil.infradead.org ([65.50.211.133]:60249 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753469AbdDDQwQ (ORCPT ); Tue, 4 Apr 2017 12:52:16 -0400 Content-Disposition: inline In-Reply-To: <4a7fe8c6-e790-e855-1571-24603c5ca80f@vatsul.com> Sender: platform-driver-x86-owner@vger.kernel.org List-ID: To: Santeri Toivonen Cc: dvhart@linux.intel.com, Corentin Chary , jprvita@gmail.com, Andy Shevchenko , marcos.souza.org@gmail.com, acpi4asus-user@lists.sourceforge.net, platform-driver-x86@vger.kernel.org On Tue, Apr 04, 2017 at 07:35:00PM +0300, Santeri Toivonen wrote: > Asus laptop X302UA starts up with Wi-Fi disabled, > without a way to enable it. Set wapf=4 to fix the problem. > > Signed-off-by: Santeri Toivonen > --- > 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 dea98ffb6f60..1ae58d906536 100644 > --- a/drivers/platform/x86/asus-nb-wmi.c > +++ b/drivers/platform/x86/asus-nb-wmi.c > @@ -144,6 +144,15 @@ static const struct dmi_system_id asus_quirks[] = { > }, > { > .callback = dmi_matched, > + .ident = "ASUSTeK COMPUTER INC. X302UA", > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), > + DMI_MATCH(DMI_PRODUCT_NAME, "X302UA"), > + }, > + .driver_data = &quirk_asus_wapf4, > + }, > + { > + .callback = dmi_matched, > .ident = "ASUSTeK COMPUTER INC. X401U", > .matches = { > DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), Hi Santeri, How are you preparing your patches? The context lines have an extra leading space and fail to apply with git-am and patch. Git will create properly formatted patches using the "git format-patch" command after you have committed the change to your local repository. Alternatively you can use "diff -Nurp" directly, although that's much more tedious. Documentation/process/submitting-patches.rst has detailed instructions in "1) ``diff -up``". -- Darren Hart VMware Open Source Technology Center