tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master head: 274d7803837da78dfc911bcda0d593412676fc20 commit: 184fdd873d83bfcfdd25310ae3f2d7eb8dc5224a [10446/11993] clk: qcom: Add global clock controller driver for SM6375 config: arm64-randconfig-r023-20221002 compiler: clang version 16.0.0 (https://github.com/llvm/llvm-project 791a7ae1ba3efd6bca96338e10ffde557ba83920) 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 # install arm64 cross compiling tool for clang build # apt-get install binutils-aarch64-linux-gnu # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=184fdd873d83bfcfdd25310ae3f2d7eb8dc5224a git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git git fetch --no-tags linux-next master git checkout 184fdd873d83bfcfdd25310ae3f2d7eb8dc5224a # 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=arm64 SHELL=/bin/bash drivers/clk/qcom/ If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> drivers/clk/qcom/gcc-sm6375.c:691:32: warning: unused variable 'gcc_parent_map_15' [-Wunused-const-variable] static const struct parent_map gcc_parent_map_15[] = { ^ >> drivers/clk/qcom/gcc-sm6375.c:697:37: warning: unused variable 'gcc_parent_data_15' [-Wunused-const-variable] static const struct clk_parent_data gcc_parent_data_15[] = { ^ 2 warnings generated. vim +/gcc_parent_map_15 +691 drivers/clk/qcom/gcc-sm6375.c 690 > 691 static const struct parent_map gcc_parent_map_15[] = { 692 { P_BI_TCXO, 0 }, 693 { P_GPLL0_OUT_MAIN, 1 }, 694 { P_GPLL6_OUT_EVEN, 4 }, 695 }; 696 > 697 static const struct clk_parent_data gcc_parent_data_15[] = { 698 { .index = DT_BI_TCXO }, 699 { .hw = &gpll0.clkr.hw }, 700 { .hw = &gpll6_out_even.clkr.hw }, 701 }; 702 -- 0-DAY CI Kernel Test Service https://01.org/lkp