tree: git://linuxtv.org/sailus/media_tree.git test head: 94e408a1547ef00f59477a072c6f943d62d7a097 commit: 3cef6383eec3ec8ac81afe294a669c2ecd8882ef [54/55] media: i2c: add MAX96714 driver config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240601/202406012053.0Av3nXna-lkp@xxxxxxxxx/config) compiler: alpha-linux-gcc (GCC) 13.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240601/202406012053.0Av3nXna-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/202406012053.0Av3nXna-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/media/i2c/max96714.c: In function 'max96714_i2c_mux_init': >> drivers/media/i2c/max96714.c:675:16: error: too many arguments to function 'i2c_mux_add_adapter' 675 | return i2c_mux_add_adapter(priv->mux, 0, 0, 0); | ^~~~~~~~~~~~~~~~~~~ In file included from drivers/media/i2c/max96714.c:13: include/linux/i2c-mux.h:58:5: note: declared here 58 | int i2c_mux_add_adapter(struct i2c_mux_core *muxc, | ^~~~~~~~~~~~~~~~~~~ vim +/i2c_mux_add_adapter +675 drivers/media/i2c/max96714.c 666 667 static int max96714_i2c_mux_init(struct max96714_priv *priv) 668 { 669 priv->mux = i2c_mux_alloc(priv->client->adapter, &priv->client->dev, 670 1, 0, I2C_MUX_LOCKED | I2C_MUX_GATE, 671 max96714_i2c_mux_select, NULL); 672 if (!priv->mux) 673 return -ENOMEM; 674 > 675 return i2c_mux_add_adapter(priv->mux, 0, 0, 0); 676 } 677 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki