Hi "Peng, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on shawnguo/for-next] [also build test WARNING on linus/master v5.19-rc7 next-20220719] [cannot apply to robh/for-next] [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/Peng-Fan-OSS/imx-add-i-MX8MP-hdmi-blk-ctrl-hdcp-hrv-and-vpu-blk-ctrl/20220719-135352 base: https://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git for-next config: microblaze-allmodconfig (https://download.01.org/0day-ci/archive/20220720/202207201734.DwWC33xs-lkp@xxxxxxxxx/config) compiler: microblaze-linux-gcc (GCC) 12.1.0 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/73728b6c4380e24d833b690b7ead261e1fcdcbc2 git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review Peng-Fan-OSS/imx-add-i-MX8MP-hdmi-blk-ctrl-hdcp-hrv-and-vpu-blk-ctrl/20220719-135352 git checkout 73728b6c4380e24d833b690b7ead261e1fcdcbc2 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=microblaze SHELL=/bin/bash drivers/soc/imx/ sound/soc/sof/imx/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot <lkp@xxxxxxxxx> All warnings (new ones prefixed by >>): drivers/soc/imx/imx8m-blk-ctrl.c:466:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'path_names' 466 | .path_names = (const char *[]){"g1"}, | ^~~~~~~~~~ >> drivers/soc/imx/imx8m-blk-ctrl.c:466:31: warning: initialization of 'unsigned int' from 'const char **' makes integer from pointer without a cast [-Wint-conversion] 466 | .path_names = (const char *[]){"g1"}, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:466:31: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[0].mipi_phy_rst_mask') drivers/soc/imx/imx8m-blk-ctrl.c:467:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'num_paths' 467 | .num_paths = 1, | ^~~~~~~~~ >> drivers/soc/imx/imx8m-blk-ctrl.c:467:30: warning: excess elements in struct initializer 467 | .num_paths = 1, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:467:30: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[0]') drivers/soc/imx/imx8m-blk-ctrl.c:476:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'path_names' 476 | .path_names = (const char *[]){"g2"}, | ^~~~~~~~~~ drivers/soc/imx/imx8m-blk-ctrl.c:476:31: warning: initialization of 'unsigned int' from 'const char **' makes integer from pointer without a cast [-Wint-conversion] 476 | .path_names = (const char *[]){"g2"}, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:476:31: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[1].mipi_phy_rst_mask') drivers/soc/imx/imx8m-blk-ctrl.c:477:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'num_paths' 477 | .num_paths = 1, | ^~~~~~~~~ drivers/soc/imx/imx8m-blk-ctrl.c:477:30: warning: excess elements in struct initializer 477 | .num_paths = 1, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:477:30: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[1]') drivers/soc/imx/imx8m-blk-ctrl.c:486:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'path_names' 486 | .path_names = (const char *[]){"vc8000e"}, | ^~~~~~~~~~ drivers/soc/imx/imx8m-blk-ctrl.c:486:31: warning: initialization of 'unsigned int' from 'const char **' makes integer from pointer without a cast [-Wint-conversion] 486 | .path_names = (const char *[]){"vc8000e"}, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:486:31: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[2].mipi_phy_rst_mask') drivers/soc/imx/imx8m-blk-ctrl.c:487:18: error: 'const struct imx8m_blk_ctrl_domain_data' has no member named 'num_paths' 487 | .num_paths = 1, | ^~~~~~~~~ drivers/soc/imx/imx8m-blk-ctrl.c:487:30: warning: excess elements in struct initializer 487 | .num_paths = 1, | ^ drivers/soc/imx/imx8m-blk-ctrl.c:487:30: note: (near initialization for 'imx8mp_vpu_blk_ctl_domain_data[2]') vim +466 drivers/soc/imx/imx8m-blk-ctrl.c 457 458 static const struct imx8m_blk_ctrl_domain_data imx8mp_vpu_blk_ctl_domain_data[] = { 459 [IMX8MP_VPUBLK_PD_G1] = { 460 .name = "vpublk-g1", 461 .clk_names = (const char *[]){ "g1", }, 462 .num_clks = 1, 463 .gpc_name = "g1", 464 .rst_mask = BIT(1), 465 .clk_mask = BIT(1), > 466 .path_names = (const char *[]){"g1"}, > 467 .num_paths = 1, 468 }, 469 [IMX8MP_VPUBLK_PD_G2] = { 470 .name = "vpublk-g2", 471 .clk_names = (const char *[]){ "g2", }, 472 .num_clks = 1, 473 .gpc_name = "g2", 474 .rst_mask = BIT(0), 475 .clk_mask = BIT(0), 476 .path_names = (const char *[]){"g2"}, 477 .num_paths = 1, 478 }, 479 [IMX8MP_VPUBLK_PD_VC8000E] = { 480 .name = "vpublk-vc8000e", 481 .clk_names = (const char *[]){ "vc8000e", }, 482 .num_clks = 1, 483 .gpc_name = "vc8000e", 484 .rst_mask = BIT(2), 485 .clk_mask = BIT(2), 486 .path_names = (const char *[]){"vc8000e"}, 487 .num_paths = 1, 488 }, 489 }; 490 -- 0-DAY CI Kernel Test Service https://01.org/lkp