Hi Zhu, kernel test robot noticed the following build errors: [auto build test ERROR on next-20230731] url: https://github.com/intel-lab-lkp/linux/commits/Zhu-Wang/drm-i2c-tda998x-remove-redundant-of_match_ptr/20230731-210417 base: next-20230731 patch link: https://lore.kernel.org/r/20230731130257.94751-1-wangzhu9%40huawei.com patch subject: [PATCH -next] drm/i2c: tda998x: remove redundant of_match_ptr config: i386-randconfig-i012-20230731 (https://download.01.org/0day-ci/archive/20230801/202308011156.JV5BlEpl-lkp@xxxxxxxxx/config) compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07) reproduce: (https://download.01.org/0day-ci/archive/20230801/202308011156.JV5BlEpl-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/202308011156.JV5BlEpl-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): >> drivers/gpu/drm/i2c/tda998x_drv.c:2106:21: error: use of undeclared identifier 'tda998x_dt_ids'; did you mean 'tda998x_ids'? .of_match_table = tda998x_dt_ids, ^~~~~~~~~~~~~~ tda998x_ids drivers/gpu/drm/i2c/tda998x_drv.c:2095:35: note: 'tda998x_ids' declared here static const struct i2c_device_id tda998x_ids[] = { ^ >> drivers/gpu/drm/i2c/tda998x_drv.c:2106:21: error: incompatible pointer types initializing 'const struct of_device_id *' with an expression of type 'const struct i2c_device_id[2]' [-Werror,-Wincompatible-pointer-types] .of_match_table = tda998x_dt_ids, ^~~~~~~~~~~~~~ 2 errors generated. vim +2106 drivers/gpu/drm/i2c/tda998x_drv.c 2100 2101 static struct i2c_driver tda998x_driver = { 2102 .probe = tda998x_probe, 2103 .remove = tda998x_remove, 2104 .driver = { 2105 .name = "tda998x", > 2106 .of_match_table = tda998x_dt_ids, 2107 }, 2108 .id_table = tda998x_ids, 2109 }; 2110 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki