Re: [PATCH v3 2/2] clk: amlogic: add video-related clocks for S4 SoC
From: kernel test robot <hidden>
Date: 2025-09-06 11:27:34
Also in:
linux-amlogic, linux-clk, linux-devicetree, lkml, oe-kbuild-all
Hi Chuan, kernel test robot noticed the following build errors: [auto build test ERROR on 01f3a6d1d59b8e25a6de243b0d73075cf0415eaf] url: https://github.com/intel-lab-lkp/linux/commits/Chuan-Liu-via-B4-Relay/dt-bindings-clock-add-video-clock-indices-for-Amlogic-S4-SoC/20250905-171121 base: 01f3a6d1d59b8e25a6de243b0d73075cf0415eaf patch link: https://lore.kernel.org/r/20250905-add_video_clk-v3-2-8304c91b8b94%40amlogic.com patch subject: [PATCH v3 2/2] clk: amlogic: add video-related clocks for S4 SoC config: arm64-randconfig-002-20250906 (https://download.01.org/0day-ci/archive/20250906/202509061948.3VcIfqLx-lkp@intel.com/config) compiler: aarch64-linux-gcc (GCC) 12.5.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250906/202509061948.3VcIfqLx-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 [off-list ref] | Closes: https://lore.kernel.org/oe-kbuild-all/202509061948.3VcIfqLx-lkp@intel.com/ (local) All errors (new ones prefixed by >>):
quoted
drivers/clk/meson/s4-peripherals.c:1135:26: error: 'mux_table_cts_sel' undeclared here (not in a function)
1135 | .table = mux_table_cts_sel,
| ^~~~~~~~~~~~~~~~~quoted
drivers/clk/meson/s4-peripherals.c:1140:31: error: 's4_cts_parent_hws' undeclared here (not in a function); did you mean 's4_cts_parents'?
1140 | .parent_hws = s4_cts_parent_hws,
| ^~~~~~~~~~~~~~~~~
| s4_cts_parents
In file included from include/linux/build_bug.h:5,
from include/linux/bits.h:30,
from include/linux/bitops.h:6,
from include/linux/of.h:15,
from include/linux/clk-provider.h:9,
from drivers/clk/meson/s4-peripherals.c:9:
include/linux/compiler.h:197:82: error: expression in static assertion is not an integer
197 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
| ^
include/linux/compiler.h:202:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
202 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
| ^~~~~~~~~~~~~~~
drivers/clk/meson/s4-peripherals.c:1141:32: note: in expansion of macro 'ARRAY_SIZE'
1141 | .num_parents = ARRAY_SIZE(s4_cts_parent_hws),
| ^~~~~~~~~~
vim +/mux_table_cts_sel +1135 drivers/clk/meson/s4-peripherals.c
1129
1130 static struct clk_regmap s4_cts_encl_sel = {
1131 .data = &(struct clk_regmap_mux_data){
1132 .offset = CLKCTRL_VIID_CLK_DIV,
1133 .mask = 0xf,
1134 .shift = 12,1135 .table = mux_table_cts_sel,
1136 },
1137 .hw.init = &(struct clk_init_data){
1138 .name = "cts_encl_sel",
1139 .ops = &clk_regmap_mux_ops,1140 .parent_hws = s4_cts_parent_hws,
1141 .num_parents = ARRAY_SIZE(s4_cts_parent_hws), 1142 .flags = CLK_SET_RATE_PARENT, 1143 }, 1144 }; 1145 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki