> -----Original Message----- > From: kernel test robot <lkp@xxxxxxxxx> > Sent: Monday, March 11, 2024 10:49 PM > To: Ping-Ke Shih <pkshih@xxxxxxxxxxx>; kvalo@xxxxxxxxxx > Cc: llvm@xxxxxxxxxxxxxxx; oe-kbuild-all@xxxxxxxxxxxxxxx; DeanKu <ku920601@xxxxxxxxxxx>; > linux-wireless@xxxxxxxxxxxxxxx > Subject: Re: [PATCH 1/6] wifi: rtw89: coex: Add WiFi role info format version 8 > > Hi Ping-Ke, > > kernel test robot noticed the following build warnings: > > [auto build test WARNING on wireless-next/main] > [also build test WARNING on next-20240308] > [cannot apply to wireless/main linus/master v6.8] > [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#_base_tree_information] > > url: > https://github.com/intel-lab-lkp/linux/commits/Ping-Ke-Shih/wifi-rtw89-coex-Add-WiFi-role-info-format- > version-8/20240306-115058 > base: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git main > patch link: https://lore.kernel.org/r/20240306034558.19648-2-pkshih%40realtek.com > patch subject: [PATCH 1/6] wifi: rtw89: coex: Add WiFi role info format version 8 > config: x86_64-allmodconfig > (https://download.01.org/0day-ci/archive/20240311/202403112247.DlQU3eaG-lkp@xxxxxxxxx/config) > compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project > 6009708b4367171ccdbf4b5905cb6a803753fe18) > reproduce (this is a W=1 build): > (https://download.01.org/0day-ci/archive/20240311/202403112247.DlQU3eaG-lkp@xxxxxxxxx/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@xxxxxxxxx> > | Closes: https://lore.kernel.org/oe-kbuild-all/202403112247.DlQU3eaG-lkp@xxxxxxxxx/ > > All warnings (new ones prefixed by >>): > > >> drivers/net/wireless/realtek/rtw89/coex.c:5480:20: warning: variable 'cnt_2g' set but not used > [-Wunused-but-set-variable] > 5480 | u8 i, j, cnt = 0, cnt_2g = 0, cnt_5g = 0; > | ^ > >> drivers/net/wireless/realtek/rtw89/coex.c:5480:32: warning: variable 'cnt_5g' set but not used > [-Wunused-but-set-variable] > 5480 | u8 i, j, cnt = 0, cnt_2g = 0, cnt_5g = 0; > | ^ > 2 warnings generated. > These two counters are prepared to support coming MLO, so I will add necessary debug messages ahead to avoid these warnings. Ping-Ke