From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH RESEND 3/3] iwlwifi: integrate with iwlmei
Date: Tue, 13 Apr 2021 02:16:21 +0800 [thread overview]
Message-ID: <202104130226.v63jflqi-lkp@intel.com> (raw)
In-Reply-To: <20210412124328.24472-3-emmanuel.grumbach@intel.com>
[-- Attachment #1: Type: text/plain, Size: 3506 bytes --]
Hi Emmanuel,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on wireless-drivers/master char-misc/char-misc-testing v5.12-rc7 next-20210412]
[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/Emmanuel-Grumbach/mei-bus-add-client-dma-interface/20210412-204450
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: arc-allyesconfig (attached as .config)
compiler: arceb-elf-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/282793cf36fcc2c1b65dd2ca6ba4abc0cff126ac
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Emmanuel-Grumbach/mei-bus-add-client-dma-interface/20210412-204450
git checkout 282793cf36fcc2c1b65dd2ca6ba4abc0cff126ac
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arc
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/net/wireless/intel/iwlwifi/mvm/ops.c: In function 'iwl_mvm_start_post_nvm':
>> drivers/net/wireless/intel/iwlwifi/mvm/ops.c:715:2: error: implicit declaration of function 'wiphy_rfkill_set_hw_state_reason'; did you mean 'wiphy_rfkill_set_hw_state'? [-Werror=implicit-function-declaration]
715 | wiphy_rfkill_set_hw_state_reason(mvm->hw->wiphy,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| wiphy_rfkill_set_hw_state
>> drivers/net/wireless/intel/iwlwifi/mvm/ops.c:717:7: error: 'RFKILL_HARD_BLOCK_NOT_OWNER' undeclared (first use in this function)
717 | RFKILL_HARD_BLOCK_NOT_OWNER);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/net/wireless/intel/iwlwifi/mvm/ops.c:717:7: note: each undeclared identifier is reported only once for each function it appears in
drivers/net/wireless/intel/iwlwifi/mvm/ops.c: In function 'iwl_mvm_mei_rfkill':
drivers/net/wireless/intel/iwlwifi/mvm/ops.c:754:7: error: 'RFKILL_HARD_BLOCK_NOT_OWNER' undeclared (first use in this function)
754 | RFKILL_HARD_BLOCK_NOT_OWNER);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +715 drivers/net/wireless/intel/iwlwifi/mvm/ops.c
699
700 static int iwl_mvm_start_post_nvm(struct iwl_mvm *mvm)
701 {
702 struct iwl_mvm_csme_conn_info *csme_conn_info __maybe_unused;
703 int ret;
704
705 iwl_mvm_toggle_tx_ant(mvm, &mvm->mgmt_last_antenna_idx);
706
707 ret = iwl_mvm_mac_setup_register(mvm);
708 if (ret)
709 return ret;
710
711 mvm->hw_registered = true;
712
713 iwl_mvm_dbgfs_register(mvm);
714
> 715 wiphy_rfkill_set_hw_state_reason(mvm->hw->wiphy,
716 mvm->mei_rfkill_blocked,
> 717 RFKILL_HARD_BLOCK_NOT_OWNER);
718 return 0;
719 }
720
---
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: 67464 bytes --]
next prev parent reply other threads:[~2021-04-12 18:16 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-12 12:43 [PATCH RESEND 1/3] mei: bus: add client dma interface Emmanuel Grumbach
2021-04-12 12:43 ` [PATCH RESEND 2/3] iwlwifi: mei: add the driver to allow cooperation with CSME Emmanuel Grumbach
2021-04-12 13:06 ` Greg KH
2021-04-12 13:44 ` Grumbach, Emmanuel
2021-04-12 14:18 ` Greg KH
2021-04-12 14:29 ` Grumbach, Emmanuel
2021-04-12 14:35 ` Greg KH
2021-04-12 14:46 ` Grumbach, Emmanuel
2021-04-12 15:09 ` Greg KH
2021-04-12 12:43 ` [PATCH RESEND 3/3] iwlwifi: integrate with iwlmei Emmanuel Grumbach
2021-04-12 13:09 ` Greg KH
2021-04-12 18:16 ` kernel test robot [this message]
2021-04-12 13:09 ` [PATCH RESEND 1/3] mei: bus: add client dma interface Greg KH
2021-04-20 17:27 ` [PATCH v2 " Emmanuel Grumbach
2021-04-20 17:27 ` [PATCH v2 2/3] iwlwifi: mei: add the driver to allow cooperation with CSME Emmanuel Grumbach
2021-05-13 18:56 ` Greg KH
2021-04-20 17:27 ` [PATCH v2 3/3] iwlwifi: integrate with iwlmei Emmanuel Grumbach
2021-05-12 5:49 ` [PATCH v2 1/3] mei: bus: add client dma interface Emmanuel Grumbach
2021-05-12 6:02 ` Greg KH
2021-05-13 18:57 ` Greg KH
2021-05-21 8:51 ` Luca Coelho
2021-05-21 8:55 ` Coelho, Luciano
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=202104130226.v63jflqi-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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.