* [PATCH -next] soc_camera: depends on I2C [not found] <20090511161442.3e9d9cb9.sfr@canb.auug.org.au> @ 2009-05-11 16:36 ` Randy Dunlap 2009-05-11 17:53 ` Guennadi Liakhovetski 2009-05-11 16:37 ` [PATCH -next] v4l2: handle unregister for non-I2C builds Randy Dunlap 1 sibling, 1 reply; 7+ messages in thread From: Randy Dunlap @ 2009-05-11 16:36 UTC (permalink / raw) To: Stephen Rothwell Cc: linux-next, LKML, g.liakhovetski, linux-media, Mauro Carvalho Chehab From: Randy Dunlap <randy.dunlap@oracle.com> soc_camera uses i2c_*() functions and has build errors when CONFIG_I2C=n: ERROR: "i2c_new_device" [drivers/media/video/soc_camera.ko] undefined! ERROR: "i2c_get_adapter" [drivers/media/video/soc_camera.ko] undefined! ERROR: "i2c_put_adapter" [drivers/media/video/soc_camera.ko] undefined! ERROR: "i2c_unregister_device" [drivers/media/video/soc_camera.ko] undefined! Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> --- drivers/media/video/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20090511.orig/drivers/media/video/Kconfig +++ linux-next-20090511/drivers/media/video/Kconfig @@ -694,7 +694,7 @@ config VIDEO_CAFE_CCIC config SOC_CAMERA tristate "SoC camera support" - depends on VIDEO_V4L2 && HAS_DMA + depends on VIDEO_V4L2 && HAS_DMA && I2C select VIDEOBUF_GEN help SoC Camera is a common API to several cameras, not connecting -- ~Randy LPC 2009, Sept. 23-25, Portland, Oregon http://linuxplumbersconf.org/2009/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH -next] soc_camera: depends on I2C 2009-05-11 16:36 ` [PATCH -next] soc_camera: depends on I2C Randy Dunlap @ 2009-05-11 17:53 ` Guennadi Liakhovetski 0 siblings, 0 replies; 7+ messages in thread From: Guennadi Liakhovetski @ 2009-05-11 17:53 UTC (permalink / raw) To: Randy Dunlap Cc: Stephen Rothwell, linux-next, LKML, Linux Media Mailing List, Mauro Carvalho Chehab On Mon, 11 May 2009, Randy Dunlap wrote: > From: Randy Dunlap <randy.dunlap@oracle.com> > > soc_camera uses i2c_*() functions and has build errors when CONFIG_I2C=n: > > ERROR: "i2c_new_device" [drivers/media/video/soc_camera.ko] undefined! > ERROR: "i2c_get_adapter" [drivers/media/video/soc_camera.ko] undefined! > ERROR: "i2c_put_adapter" [drivers/media/video/soc_camera.ko] undefined! > ERROR: "i2c_unregister_device" [drivers/media/video/soc_camera.ko] undefined! > > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Thanks, applied. Guennadi > --- > drivers/media/video/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- linux-next-20090511.orig/drivers/media/video/Kconfig > +++ linux-next-20090511/drivers/media/video/Kconfig > @@ -694,7 +694,7 @@ config VIDEO_CAFE_CCIC > > config SOC_CAMERA > tristate "SoC camera support" > - depends on VIDEO_V4L2 && HAS_DMA > + depends on VIDEO_V4L2 && HAS_DMA && I2C > select VIDEOBUF_GEN > help > SoC Camera is a common API to several cameras, not connecting > > > -- > ~Randy > LPC 2009, Sept. 23-25, Portland, Oregon > http://linuxplumbersconf.org/2009/ > --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH -next] v4l2: handle unregister for non-I2C builds [not found] <20090511161442.3e9d9cb9.sfr@canb.auug.org.au> 2009-05-11 16:36 ` [PATCH -next] soc_camera: depends on I2C Randy Dunlap @ 2009-05-11 16:37 ` Randy Dunlap 2009-05-22 5:48 ` Paul Mundt 1 sibling, 1 reply; 7+ messages in thread From: Randy Dunlap @ 2009-05-11 16:37 UTC (permalink / raw) To: Stephen Rothwell; +Cc: linux-next, LKML, linux-media, Mauro Carvalho Chehab From: Randy Dunlap <randy.dunlap@oracle.com> Build fails when CONFIG_I2C=n, so handle that case in the if block: drivers/built-in.o: In function `v4l2_device_unregister': (.text+0x157821): undefined reference to `i2c_unregister_device' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> --- drivers/media/video/v4l2-device.c | 2 ++ 1 file changed, 2 insertions(+) --- linux-next-20090511.orig/drivers/media/video/v4l2-device.c +++ linux-next-20090511/drivers/media/video/v4l2-device.c @@ -85,6 +85,7 @@ void v4l2_device_unregister(struct v4l2_ /* Unregister subdevs */ list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) { v4l2_device_unregister_subdev(sd); +#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) { struct i2c_client *client = v4l2_get_subdevdata(sd); @@ -95,6 +96,7 @@ void v4l2_device_unregister(struct v4l2_ if (client) i2c_unregister_device(client); } +#endif } } EXPORT_SYMBOL_GPL(v4l2_device_unregister); -- ~Randy LPC 2009, Sept. 23-25, Portland, Oregon http://linuxplumbersconf.org/2009/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH -next] v4l2: handle unregister for non-I2C builds 2009-05-11 16:37 ` [PATCH -next] v4l2: handle unregister for non-I2C builds Randy Dunlap @ 2009-05-22 5:48 ` Paul Mundt 2009-05-22 7:55 ` Stephen Rothwell 0 siblings, 1 reply; 7+ messages in thread From: Paul Mundt @ 2009-05-22 5:48 UTC (permalink / raw) To: Randy Dunlap Cc: Stephen Rothwell, linux-next, LKML, linux-media, Mauro Carvalho Chehab On Mon, May 11, 2009 at 09:37:41AM -0700, Randy Dunlap wrote: > From: Randy Dunlap <randy.dunlap@oracle.com> > > Build fails when CONFIG_I2C=n, so handle that case in the if block: > > drivers/built-in.o: In function `v4l2_device_unregister': > (.text+0x157821): undefined reference to `i2c_unregister_device' > > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> This patch still has not been applied as far as I can tell, and builds are still broken as a result, almost 2 weeks after the fact. > --- > drivers/media/video/v4l2-device.c | 2 ++ > 1 file changed, 2 insertions(+) > > --- linux-next-20090511.orig/drivers/media/video/v4l2-device.c > +++ linux-next-20090511/drivers/media/video/v4l2-device.c > @@ -85,6 +85,7 @@ void v4l2_device_unregister(struct v4l2_ > /* Unregister subdevs */ > list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) { > v4l2_device_unregister_subdev(sd); > +#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) > if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) { > struct i2c_client *client = v4l2_get_subdevdata(sd); > > @@ -95,6 +96,7 @@ void v4l2_device_unregister(struct v4l2_ > if (client) > i2c_unregister_device(client); > } > +#endif > } > } > EXPORT_SYMBOL_GPL(v4l2_device_unregister); > > > -- > ~Randy > LPC 2009, Sept. 23-25, Portland, Oregon > http://linuxplumbersconf.org/2009/ > -- > To unsubscribe from this list: send the line "unsubscribe linux-next" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH -next] v4l2: handle unregister for non-I2C builds 2009-05-22 5:48 ` Paul Mundt @ 2009-05-22 7:55 ` Stephen Rothwell 2009-05-22 15:57 ` Randy Dunlap 2009-05-26 17:31 ` Mauro Carvalho Chehab 0 siblings, 2 replies; 7+ messages in thread From: Stephen Rothwell @ 2009-05-22 7:55 UTC (permalink / raw) To: Mauro Carvalho Chehab Cc: Paul Mundt, Randy Dunlap, linux-next, LKML, linux-media, Hans Verkuil [-- Attachment #1: Type: text/plain, Size: 1216 bytes --] On Fri, 22 May 2009 14:48:47 +0900 Paul Mundt <lethal@linux-sh.org> wrote: > > On Mon, May 11, 2009 at 09:37:41AM -0700, Randy Dunlap wrote: > > From: Randy Dunlap <randy.dunlap@oracle.com> > > > > Build fails when CONFIG_I2C=n, so handle that case in the if block: > > > > drivers/built-in.o: In function `v4l2_device_unregister': > > (.text+0x157821): undefined reference to `i2c_unregister_device' > > > > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> > > This patch still has not been applied as far as I can tell, and builds > are still broken as a result, almost 2 weeks after the fact. In fact there has been no updates to the v4l-dvb tree at all since May 11. Mauro? I have reverted the patch that caused the build breakage ... (commit d5bc7940d39649210f1affac1fa32f253cc45a81 "V4L/DVB (11673): v4l2-device: unregister i2c_clients when unregistering the v4l2_device"). [By the way, an alternative fix might be to just define V4L2_SUBDEV_FL_IS_I2C to be zero if CONFIG_I2C and CONFIG_I2C_MODULE are not defined (gcc should then just elide the offending code).] -- Cheers, Stephen Rothwell sfr@canb.auug.org.au http://www.canb.auug.org.au/~sfr/ [-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH -next] v4l2: handle unregister for non-I2C builds 2009-05-22 7:55 ` Stephen Rothwell @ 2009-05-22 15:57 ` Randy Dunlap 2009-05-26 17:31 ` Mauro Carvalho Chehab 1 sibling, 0 replies; 7+ messages in thread From: Randy Dunlap @ 2009-05-22 15:57 UTC (permalink / raw) To: Stephen Rothwell Cc: Mauro Carvalho Chehab, Paul Mundt, linux-next, LKML, linux-media, Hans Verkuil Stephen Rothwell wrote: > On Fri, 22 May 2009 14:48:47 +0900 Paul Mundt <lethal@linux-sh.org> wrote: >> On Mon, May 11, 2009 at 09:37:41AM -0700, Randy Dunlap wrote: >>> From: Randy Dunlap <randy.dunlap@oracle.com> >>> >>> Build fails when CONFIG_I2C=n, so handle that case in the if block: >>> >>> drivers/built-in.o: In function `v4l2_device_unregister': >>> (.text+0x157821): undefined reference to `i2c_unregister_device' >>> >>> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> >> This patch still has not been applied as far as I can tell, and builds >> are still broken as a result, almost 2 weeks after the fact. > > In fact there has been no updates to the v4l-dvb tree at all since > May 11. Mauro? I got an 'hg' autocommit message for the patch on May-11, but that's all I've seen/heard about it. I'm really concerned about how slowly patches are merged for linux-next trees... and not just for drivers/media/ > I have reverted the patch that caused the build breakage ... (commit > d5bc7940d39649210f1affac1fa32f253cc45a81 "V4L/DVB (11673): v4l2-device: > unregister i2c_clients when unregistering the v4l2_device"). > > [By the way, an alternative fix might be to just define > V4L2_SUBDEV_FL_IS_I2C to be zero if CONFIG_I2C and CONFIG_I2C_MODULE are > not defined (gcc should then just elide the offending code).] -- ~Randy LPC 2009, Sept. 23-25, Portland, Oregon http://linuxplumbersconf.org/2009/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH -next] v4l2: handle unregister for non-I2C builds 2009-05-22 7:55 ` Stephen Rothwell 2009-05-22 15:57 ` Randy Dunlap @ 2009-05-26 17:31 ` Mauro Carvalho Chehab 1 sibling, 0 replies; 7+ messages in thread From: Mauro Carvalho Chehab @ 2009-05-26 17:31 UTC (permalink / raw) To: Stephen Rothwell Cc: Paul Mundt, Randy Dunlap, linux-next, LKML, linux-media, Hans Verkuil Em Fri, 22 May 2009 17:55:54 +1000 Stephen Rothwell <sfr@canb.auug.org.au> escreveu: > On Fri, 22 May 2009 14:48:47 +0900 Paul Mundt <lethal@linux-sh.org> wrote: > > > > On Mon, May 11, 2009 at 09:37:41AM -0700, Randy Dunlap wrote: > > > From: Randy Dunlap <randy.dunlap@oracle.com> > > > > > > Build fails when CONFIG_I2C=n, so handle that case in the if block: > > > > > > drivers/built-in.o: In function `v4l2_device_unregister': > > > (.text+0x157821): undefined reference to `i2c_unregister_device' > > > > > > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> > > > > This patch still has not been applied as far as I can tell, and builds > > are still broken as a result, almost 2 weeks after the fact. > > In fact there has been no updates to the v4l-dvb tree at all since > May 11. Mauro? Sorry, this email were got by a wrong filtering rule here. Only today I noticed it. Anyway, the tree were updated yesterday, with Randy's patch. Sorry for the mess. > > I have reverted the patch that caused the build breakage ... (commit > d5bc7940d39649210f1affac1fa32f253cc45a81 "V4L/DVB (11673): v4l2-device: > unregister i2c_clients when unregistering the v4l2_device"). > > [By the way, an alternative fix might be to just define > V4L2_SUBDEV_FL_IS_I2C to be zero if CONFIG_I2C and CONFIG_I2C_MODULE are > not defined (gcc should then just elide the offending code).] Cheers, Mauro ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-05-26 17:31 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20090511161442.3e9d9cb9.sfr@canb.auug.org.au>
2009-05-11 16:36 ` [PATCH -next] soc_camera: depends on I2C Randy Dunlap
2009-05-11 17:53 ` Guennadi Liakhovetski
2009-05-11 16:37 ` [PATCH -next] v4l2: handle unregister for non-I2C builds Randy Dunlap
2009-05-22 5:48 ` Paul Mundt
2009-05-22 7:55 ` Stephen Rothwell
2009-05-22 15:57 ` Randy Dunlap
2009-05-26 17:31 ` Mauro Carvalho Chehab
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox