From: kernel test robot <lkp@intel.com>
To: Denis Pauk <pauk.denis@gmail.com>
Cc: kbuild-all@lists.01.org, eugene.shalygin@gmail.com,
andy.shevchenko@gmail.com, pauk.denis@gmail.com,
platform-driver-x86@vger.kernel.org,
Ed Brindley <kernel@maidavale.org>,
Jean Delvare <jdelvare@suse.com>,
Guenter Roeck <linux@roeck-us.net>,
Jonathan Corbet <corbet@lwn.net>,
linux-hwmon@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH v4 2/2] hwmon: (asus_wmi_sensors) Support X370 Asus WMI.
Date: Mon, 11 Oct 2021 07:32:10 +0800 [thread overview]
Message-ID: <202110110733.pm9MaPS5-lkp@intel.com> (raw)
In-Reply-To: <20211010210513.343925-3-pauk.denis@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2620 bytes --]
Hi Denis,
I love your patch! Yet something to improve:
[auto build test ERROR on 39b483aa38995329326988cbc4077422bebc175a]
url: https://github.com/0day-ci/linux/commits/Denis-Pauk/Update-ASUS-WMI-supported-boards/20211011-050740
base: 39b483aa38995329326988cbc4077422bebc175a
config: ia64-randconfig-r015-20211011 (attached as .config)
compiler: ia64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/134088f1e04948512edbb1c28c6031b0b9115403
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Denis-Pauk/Update-ASUS-WMI-supported-boards/20211011-050740
git checkout 134088f1e04948512edbb1c28c6031b0b9115403
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=ia64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/hwmon/asus_wmi_sensors.c: In function 'asus_wmi_call_method':
>> drivers/hwmon/asus_wmi_sensors.c:182:18: error: implicit declaration of function 'wmi_evaluate_method'; did you mean 'wmidev_evaluate_method'? [-Werror=implicit-function-declaration]
182 | status = wmi_evaluate_method(ASUSWMI_MONITORING_GUID, 0, method_id, &input, output);
| ^~~~~~~~~~~~~~~~~~~
| wmidev_evaluate_method
drivers/hwmon/asus_wmi_sensors.c: In function 'asus_wmi_probe':
>> drivers/hwmon/asus_wmi_sensors.c:580:14: error: implicit declaration of function 'wmi_has_guid' [-Werror=implicit-function-declaration]
580 | if (!wmi_has_guid(ASUSWMI_MONITORING_GUID))
| ^~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +182 drivers/hwmon/asus_wmi_sensors.c
173
174 /*
175 * Universal method for calling WMI method
176 */
177 static int asus_wmi_call_method(u32 method_id, u32 *args, struct acpi_buffer *output)
178 {
179 struct acpi_buffer input = {(acpi_size) sizeof(*args), args };
180 acpi_status status;
181
> 182 status = wmi_evaluate_method(ASUSWMI_MONITORING_GUID, 0, method_id, &input, output);
183 if (ACPI_FAILURE(status))
184 return -EIO;
185
186 return 0;
187 }
188
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 29145 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v4 2/2] hwmon: (asus_wmi_sensors) Support X370 Asus WMI.
Date: Mon, 11 Oct 2021 07:32:10 +0800 [thread overview]
Message-ID: <202110110733.pm9MaPS5-lkp@intel.com> (raw)
In-Reply-To: <20211010210513.343925-3-pauk.denis@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2681 bytes --]
Hi Denis,
I love your patch! Yet something to improve:
[auto build test ERROR on 39b483aa38995329326988cbc4077422bebc175a]
url: https://github.com/0day-ci/linux/commits/Denis-Pauk/Update-ASUS-WMI-supported-boards/20211011-050740
base: 39b483aa38995329326988cbc4077422bebc175a
config: ia64-randconfig-r015-20211011 (attached as .config)
compiler: ia64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/134088f1e04948512edbb1c28c6031b0b9115403
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Denis-Pauk/Update-ASUS-WMI-supported-boards/20211011-050740
git checkout 134088f1e04948512edbb1c28c6031b0b9115403
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=ia64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/hwmon/asus_wmi_sensors.c: In function 'asus_wmi_call_method':
>> drivers/hwmon/asus_wmi_sensors.c:182:18: error: implicit declaration of function 'wmi_evaluate_method'; did you mean 'wmidev_evaluate_method'? [-Werror=implicit-function-declaration]
182 | status = wmi_evaluate_method(ASUSWMI_MONITORING_GUID, 0, method_id, &input, output);
| ^~~~~~~~~~~~~~~~~~~
| wmidev_evaluate_method
drivers/hwmon/asus_wmi_sensors.c: In function 'asus_wmi_probe':
>> drivers/hwmon/asus_wmi_sensors.c:580:14: error: implicit declaration of function 'wmi_has_guid' [-Werror=implicit-function-declaration]
580 | if (!wmi_has_guid(ASUSWMI_MONITORING_GUID))
| ^~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +182 drivers/hwmon/asus_wmi_sensors.c
173
174 /*
175 * Universal method for calling WMI method
176 */
177 static int asus_wmi_call_method(u32 method_id, u32 *args, struct acpi_buffer *output)
178 {
179 struct acpi_buffer input = {(acpi_size) sizeof(*args), args };
180 acpi_status status;
181
> 182 status = wmi_evaluate_method(ASUSWMI_MONITORING_GUID, 0, method_id, &input, output);
183 if (ACPI_FAILURE(status))
184 return -EIO;
185
186 return 0;
187 }
188
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29145 bytes --]
next prev parent reply other threads:[~2021-10-10 23:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-10 21:05 [PATCH v4 0/2] Update ASUS WMI supported boards Denis Pauk
2021-10-10 21:05 ` [PATCH v4 1/2] hwmon: (asus_wmi_ec_sensors) Support B550 Asus WMI Denis Pauk
2021-10-10 22:09 ` Eugene Shalygin
2021-10-10 23:51 ` Guenter Roeck
2021-10-11 2:04 ` kernel test robot
2021-10-11 2:04 ` kernel test robot
2021-10-11 3:05 ` kernel test robot
2021-10-11 3:05 ` kernel test robot
2021-10-10 21:05 ` [PATCH v4 2/2] hwmon: (asus_wmi_sensors) Support X370 " Denis Pauk
2021-10-10 23:32 ` kernel test robot [this message]
2021-10-10 23:32 ` kernel test robot
2021-10-11 2:53 ` kernel test robot
2021-10-11 2:53 ` kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202110110733.pm9MaPS5-lkp@intel.com \
--to=lkp@intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=corbet@lwn.net \
--cc=eugene.shalygin@gmail.com \
--cc=jdelvare@suse.com \
--cc=kbuild-all@lists.01.org \
--cc=kernel@maidavale.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=pauk.denis@gmail.com \
--cc=platform-driver-x86@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.