Hi Gary, kernel test robot noticed the following build errors: [auto build test ERROR on staging/staging-testing] url: https://github.com/intel-lab-lkp/linux/commits/Gary-Rookard/staging-rtl8192e-renamed-variable-TxCountToDataRate/20231022-053516 base: staging/staging-testing patch link: https://lore.kernel.org/r/20231021213202.6244-1-garyrookard%40fastmail.org patch subject: [PATCH v2] staging: rtl8192e: renamed variable TxCountToDataRate config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20231022/202310220613.ecHUnU2j-lkp@xxxxxxxxx/config) compiler: alpha-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231022/202310220613.ecHUnU2j-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/202310220613.ecHUnU2j-lkp@xxxxxxxxx/ All error/warnings (new ones prefixed by >>): drivers/staging/rtl8192e/rtllib_softmac_wx.c: In function 'rtllib_wx_get_rate': >> drivers/staging/rtl8192e/rtllib_softmac_wx.c:211:20: error: implicit declaration of function 'tx_count_to_data_rate'; did you mean 'tx_count_data_rate'? [-Werror=implicit-function-declaration] 211 | tmp_rate = tx_count_to_data_rate(ieee, | ^~~~~~~~~~~~~~~~~~~~~ | tx_count_data_rate cc1: some warnings being treated as errors -- >> drivers/staging/rtl8192e/rtl819x_HTProc.c:117:6: warning: no previous prototype for 'tx_count_to_data_rate' [-Wmissing-prototypes] 117 | u16 tx_count_to_data_rate(struct rtllib_device *ieee, u8 nDataRate) | ^~~~~~~~~~~~~~~~~~~~~ vim +211 drivers/staging/rtl8192e/rtllib_softmac_wx.c 204 205 int rtllib_wx_get_rate(struct rtllib_device *ieee, 206 struct iw_request_info *info, 207 union iwreq_data *wrqu, char *extra) 208 { 209 u32 tmp_rate; 210 > 211 tmp_rate = tx_count_to_data_rate(ieee, 212 ieee->softmac_stats.CurrentShowTxate); 213 wrqu->bitrate.value = tmp_rate * 500000; 214 215 return 0; 216 } 217 EXPORT_SYMBOL(rtllib_wx_get_rate); 218 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki