Hi "Jonas,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on wireless-drivers/master v5.13-rc2 next-20210521]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url:
https://github.com/0day-ci/linux/commits/Jonas-Dre-ler/mwifiex-Add-quirks...
base:
https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-ne...
master
config: riscv-allyesconfig (attached as .config)
compiler: riscv64-linux-gcc (GCC) 9.3.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/664dc875005de6def700fef775192ea01...
git remote add linux-review
https://github.com/0day-ci/linux
git fetch --no-tags linux-review
Jonas-Dre-ler/mwifiex-Add-quirks-for-MS-Surface-devices/20210522-222428
git checkout 664dc875005de6def700fef775192ea019ebc8ab
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=riscv
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
drivers/net/wireless/marvell/mwifiex/pcie_quirks.c: In function
'mwifiex_pcie_reset_wsid_quirk':
> drivers/net/wireless/marvell/mwifiex/pcie_quirks.c:202:7: error:
implicit declaration of function 'acpi_has_method'; did you mean
'acpi_has_watchdog'? [-Werror=implicit-function-declaration]
202 | if
(!acpi_has_method(handle, "_DSM")) {
| ^~~~~~~~~~~~~~~
| acpi_has_watchdog
> drivers/net/wireless/marvell/mwifiex/pcie_quirks.c:207:7: error:
implicit declaration of function 'acpi_check_dsm'; did you mean
'acpi_check_region'? [-Werror=implicit-function-declaration]
207 | if
(!acpi_check_dsm(handle, &wsid_dsm_guid,
| ^~~~~~~~~~~~~~
| acpi_check_region
cc1: some warnings being treated as errors
vim +202 drivers/net/wireless/marvell/mwifiex/pcie_quirks.c
186
187 int mwifiex_pcie_reset_wsid_quirk(struct pci_dev *pdev)
188 {
189 acpi_handle handle;
190 union acpi_object *obj;
191 acpi_status status;
192
193 dev_info(&pdev->dev, "Using reset_wsid quirk to perform FW
reset\n");
194
195 status = acpi_get_handle(NULL, ACPI_WSID_PATH, &handle);
196 if (ACPI_FAILURE(status)) {
197 dev_err(&pdev->dev, "No ACPI handle for path %s\n",
198 ACPI_WSID_PATH);
199 return -ENODEV;
200 }
201
202 if (!acpi_has_method(handle, "_DSM")) {
203 dev_err(&pdev->dev, "_DSM method not found\n");
204 return -ENODEV;
205 }
206
207 if (!acpi_check_dsm(handle, &wsid_dsm_guid,
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org