Em 28-09-2010 22:29, Stephen Rothwell escreveu: > Hi Mauro, > > After merging the v4l-dvb tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/media/video/bt8xx/bttv-input.c: In function 'init_bttv_i2c_ir': > drivers/media/video/bt8xx/bttv-input.c:306: error: too few arguments to function 'i2c_new_probed_device' > > Caused by commit 3c81f945a74224d6e3017596297ee9903929b1a7 ("V4L/DVB: > bttv: Move PV951 IR to the right driver") interacting with commit > 9a94241afcc9a481691a9c29b7460217925b59b8 ("i2c: Add support for custom > probe function") that entered Linus' tree in v2.6.36-rc1. I guess that > the v4l-dvb commit moved that code to a driver that is now being built. > > I have used the v4l-dvb tree from next-20100928 for today. Ok, that's easy. a new parameter were added to this function, probably via Jean's tree. The fix is as simple as: - i2c_new_probed_device(&btv->c.i2c_adap, &info, addr_list); + i2c_new_probed_device(&btv->c.i2c_adap, &info, addr_list, NULL); The extra parameter is for an extra customized probe function, that it is not needed in this case. I got a small merge problem on this function: drivers/media/video/wm8739.c I just merged the conflict resolution at the merge object, and added a new patch for the extra parameter in order to solve I2C conflict. I did a compilation test after merging it with next-20100929 and those issues were solved on my local build. Cheers, Mauro. -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html