tree: git://linuxtv.org/sailus/media_tree.git test head: 94e408a1547ef00f59477a072c6f943d62d7a097 commit: b22ddf6b6ea346fb256ed4adca4cb8c085a2d7fb [53/55] media: i2c: add MAX96717 driver config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240601/202406011928.HPsUpFHI-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/202406011928.HPsUpFHI-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/202406011928.HPsUpFHI-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/media/i2c/max96717.c: In function 'max96717_i2c_mux_init': >> drivers/media/i2c/max96717.c:124:16: error: too many arguments to function 'i2c_mux_add_adapter' 124 | return i2c_mux_add_adapter(priv->mux, 0, 0, 0); | ^~~~~~~~~~~~~~~~~~~ In file included from drivers/media/i2c/max96717.c:14: 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 +124 drivers/media/i2c/max96717.c 115 116 static int max96717_i2c_mux_init(struct max96717_priv *priv) 117 { 118 priv->mux = i2c_mux_alloc(priv->client->adapter, &priv->client->dev, 119 1, 0, I2C_MUX_LOCKED | I2C_MUX_GATE, 120 max96717_i2c_mux_select, NULL); 121 if (!priv->mux) 122 return -ENOMEM; 123 > 124 return i2c_mux_add_adapter(priv->mux, 0, 0, 0); 125 } 126 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki