Hi Biju, kernel test robot noticed the following build warnings: [auto build test WARNING on clk/clk-next] [also build test WARNING on next-20230403] [cannot apply to geert-renesas-devel/next robh/for-next linus/master v6.3-rc5] [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/Biju-Das/dt-bindings-clock-Add-Renesas-versa3-clock-generator-bindings/20230403-183501 base: https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git clk-next patch link: https://lore.kernel.org/r/20230403103257.328954-3-biju.das.jz%40bp.renesas.com patch subject: [PATCH v3 2/3] drivers: clk: Add support for versa3 clock driver config: i386-allmodconfig (https://download.01.org/0day-ci/archive/20230404/202304040800.ncpvZq1s-lkp@xxxxxxxxx/config) compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1) 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/intel-lab-lkp/linux/commit/bd1f4d06603f7dc65276411a65078a8ffaf5b844 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Biju-Das/dt-bindings-clock-Add-Renesas-versa3-clock-generator-bindings/20230403-183501 git checkout bd1f4d06603f7dc65276411a65078a8ffaf5b844 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 olddefconfig COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/clk/ drivers/gpio/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot <lkp@xxxxxxxxx> | Link: https://lore.kernel.org/oe-kbuild-all/202304040800.ncpvZq1s-lkp@xxxxxxxxx/ All warnings (new ones prefixed by >>): >> drivers/clk/clk-versaclock3.c:263:8: warning: variable 'premul' is uninitialized when used here [-Wuninitialized] if (premul & VC3_PLL2_MDIV_DOUBLER) ^~~~~~ drivers/clk/clk-versaclock3.c:244:29: note: initialize the variable 'premul' to silence this warning unsigned int prediv, premul; ^ = 0 1 warning generated. vim +/premul +263 drivers/clk/clk-versaclock3.c 238 239 static unsigned long vc3_pfd_recalc_rate(struct clk_hw *hw, 240 unsigned long parent_rate) 241 { 242 struct vc3_hw_data *vc3 = container_of(hw, struct vc3_hw_data, hw); 243 const struct vc3_pfd_data *pfd = vc3->data; 244 unsigned int prediv, premul; 245 unsigned long rate; 246 u8 mdiv; 247 248 regmap_read(vc3->regmap, pfd->offs, &prediv); 249 if (pfd->num == VC3_PFD1) { 250 /* The bypass_prediv is set, PLL fed from Ref_in directly. */ 251 if (prediv & pfd->mdiv1_bitmsk) { 252 /* check doubler is set or not */ 253 regmap_read(vc3->regmap, VC3_PLL1_CTRL_OUTDIV5, &premul); 254 if (premul & VC3_PLL1_CTRL_OUTDIV5_PLL1_MDIV_DOUBLER) 255 parent_rate *= 2; 256 return parent_rate; 257 } 258 mdiv = VC3_PLL1_M_DIV(prediv); 259 } else if (pfd->num == VC3_PFD2) { 260 /* The bypass_prediv is set, PLL fed from Ref_in directly. */ 261 if (prediv & pfd->mdiv1_bitmsk) { 262 /* check doubler is set or not */ > 263 if (premul & VC3_PLL2_MDIV_DOUBLER) 264 parent_rate *= 2; 265 return parent_rate; 266 } 267 268 mdiv = VC3_PLL2_M_DIV(prediv); 269 } else { 270 /* The bypass_prediv is set, PLL fed from Ref_in directly. */ 271 if (prediv & pfd->mdiv1_bitmsk) 272 return parent_rate; 273 274 mdiv = VC3_PLL3_M_DIV(prediv); 275 } 276 277 if (prediv & pfd->mdiv2_bitmsk) 278 rate = parent_rate / 2; 279 else 280 rate = parent_rate / mdiv; 281 282 return rate; 283 } 284 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests