* Re: [PATCH v5 3/5] wifi: mac80211: Set RTS threshold on per-radio basis
[not found] <20250323073959.2872641-4-quic_rdevanat@quicinc.com>
@ 2025-03-23 17:21 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2025-03-23 17:21 UTC (permalink / raw)
To: Roopni Devanathan; +Cc: llvm, oe-kbuild-all
Hi Roopni,
kernel test robot noticed the following build errors:
[auto build test ERROR on 1794d7ab34d2221ac7eb921b171e75b856e10561]
url: https://github.com/intel-lab-lkp/linux/commits/Roopni-Devanathan/wifi-cfg80211-Add-Support-to-Set-RTS-Threshold-for-each-Radio/20250323-154228
base: 1794d7ab34d2221ac7eb921b171e75b856e10561
patch link: https://lore.kernel.org/r/20250323073959.2872641-4-quic_rdevanat%40quicinc.com
patch subject: [PATCH v5 3/5] wifi: mac80211: Set RTS threshold on per-radio basis
config: arm64-allmodconfig (https://download.01.org/0day-ci/archive/20250324/202503240144.urFDLtwW-lkp@intel.com/config)
compiler: clang version 19.1.7 (https://github.com/llvm/llvm-project cd708029e0b2869e80abe31ddb175f7c35361f90)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250324/202503240144.urFDLtwW-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503240144.urFDLtwW-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:2618:23: error: incompatible function pointer types initializing 'int (*)(struct ieee80211_hw *, s8, u32)' (aka 'int (*)(struct ieee80211_hw *, signed char, unsigned int)') with an expression of type 'int (struct ieee80211_hw *, u32)' (aka 'int (struct ieee80211_hw *, unsigned int)') [-Wincompatible-function-pointer-types]
2618 | .set_rts_threshold = iwl_mld_mac80211_set_rts_threshold,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
vim +2618 drivers/net/wireless/intel/iwlwifi/mld/mac80211.c
d1e879ec600f9b Miri Korenblit 2025-02-16 2600
d1e879ec600f9b Miri Korenblit 2025-02-16 2601 const struct ieee80211_ops iwl_mld_hw_ops = {
d1e879ec600f9b Miri Korenblit 2025-02-16 2602 .tx = iwl_mld_mac80211_tx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2603 .start = iwl_mld_mac80211_start,
d1e879ec600f9b Miri Korenblit 2025-02-16 2604 .stop = iwl_mld_mac80211_stop,
d1e879ec600f9b Miri Korenblit 2025-02-16 2605 .config = iwl_mld_mac80211_config,
d1e879ec600f9b Miri Korenblit 2025-02-16 2606 .add_interface = iwl_mld_mac80211_add_interface,
d1e879ec600f9b Miri Korenblit 2025-02-16 2607 .remove_interface = iwl_mld_mac80211_remove_interface,
d1e879ec600f9b Miri Korenblit 2025-02-16 2608 .conf_tx = iwl_mld_mac80211_conf_tx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2609 .prepare_multicast = iwl_mld_mac80211_prepare_multicast,
d1e879ec600f9b Miri Korenblit 2025-02-16 2610 .configure_filter = iwl_mld_mac80211_configure_filter,
d1e879ec600f9b Miri Korenblit 2025-02-16 2611 .reconfig_complete = iwl_mld_mac80211_reconfig_complete,
d1e879ec600f9b Miri Korenblit 2025-02-16 2612 .wake_tx_queue = iwl_mld_mac80211_wake_tx_queue,
d1e879ec600f9b Miri Korenblit 2025-02-16 2613 .add_chanctx = iwl_mld_add_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2614 .remove_chanctx = iwl_mld_remove_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2615 .change_chanctx = iwl_mld_change_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2616 .assign_vif_chanctx = iwl_mld_assign_vif_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 2617 .unassign_vif_chanctx = iwl_mld_unassign_vif_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 @2618 .set_rts_threshold = iwl_mld_mac80211_set_rts_threshold,
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread