From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH v9 2/3] x86: add support for Huawei WMI hotkeys. Date: Mon, 03 Dec 2018 20:04:36 +0100 Message-ID: References: <20181203185344.3521-1-ayman.bagabas@gmail.com> <20181203185344.3521-3-ayman.bagabas@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: In-Reply-To: <20181203185344.3521-3-ayman.bagabas@gmail.com> Sender: linux-kernel-owner@vger.kernel.org To: Ayman Bagabas Cc: alsa-devel@alsa-project.org, Hui Wang , Andy Shevchenko , Darren Hart , Jaroslav Kysela , Kailang Yang , linux-kernel@vger.kernel.org, platform-driver-x86@vger.kernel.org List-Id: platform-driver-x86.vger.kernel.org On Mon, 03 Dec 2018 19:53:39 +0100, Ayman Bagabas wrote: > + if (code == 0x80) { > + acpi_status status; > + acpi_handle handle; > + unsigned long long result; > + union acpi_object args[1]; > + struct acpi_object_list arg_list = { > + .pointer = args, > + .count = ARRAY_SIZE(args), > + }; > + > + args[0].type = ACPI_TYPE_INTEGER; > + args[0].integer.value = 0; > + > + status = acpi_get_handle(NULL, "\\WMI0", &handle); > + if (ACPI_FAILURE(status)) { > + dev_err(&wdev->dev, "Unable to get ACPI handle\n"); > + return; > + } > + > + status = acpi_evaluate_integer(NULL, "WQ00", &arg_list, &result); I guess you need to pass handle here? In the earlier version, you passed \\WMI0.WQ00, so it worked with NULL handle. But now it's no longer so... Other than that, it looks OK to me. Reviewed-by: Takashi Iwai But, you don't need to rush too much. Instead, better to test your own patches and make sure that they really work before submitting the final version. thanks, Takashi