cron job: media_tree daily build: ERRORS

2014-12-26 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Sat Dec 27 04:00:08 CET 2014 git branch: test git hash: cb9564e133f4f790920d715714790512085bb2e3 gcc versio

Re: [PATCHv2] media: i2c/adp1653: devicetree support for adp1653

2014-12-26 Thread Rob Herring
On Fri, Dec 26, 2014 at 2:33 PM, Pavel Machek wrote: > Hi! > >> > We are moving to device tree support on OMAP3, but that currently >> > breaks ADP1653 driver. This adds device tree support, plus required >> > documentation. >> > >> > Signed-off-by: Pavel Machek >> > >> > --- >> > >> > Changed -m

Re: [PATCHv2] media: i2c/adp1653: devicetree support for adp1653

2014-12-26 Thread Pavel Machek
Hi! > > We are moving to device tree support on OMAP3, but that currently > > breaks ADP1653 driver. This adds device tree support, plus required > > documentation. > > > > Signed-off-by: Pavel Machek > > > > --- > > > > Changed -microsec to -us, as requested by devicetree people. > > > > Fixed c

Re: [PATCHv2] media: i2c/adp1653: devicetree support for adp1653

2014-12-26 Thread Rob Herring
On Wed, Dec 24, 2014 at 4:34 PM, Pavel Machek wrote: > > We are moving to device tree support on OMAP3, but that currently > breaks ADP1653 driver. This adds device tree support, plus required > documentation. > > Signed-off-by: Pavel Machek > > --- > > Changed -microsec to -us, as requested by d

[PATCH 2/27] [media] au0828: Use setup_timer

2014-12-26 Thread Julia Lawall
Convert a call to init_timer and accompanying intializations of the timer's data and function fields to a call to setup_timer. A simplified version of the semantic match that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression t,f,d; @@ -t.function = f; -t.data = d;

[PATCH 19/27] [media] pvrusb2: Use setup_timer

2014-12-26 Thread Julia Lawall
Convert a call to init_timer and accompanying intializations of the timer's data and function fields to a call to setup_timer. A simplified version of the semantic match that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression t,f,d; @@ -init_timer(&t); +setup_timer(

[PATCH 1/27] [media] s2255drv: Use setup_timer

2014-12-26 Thread Julia Lawall
Convert a call to init_timer and accompanying intializations of the timer's data and function fields to a call to setup_timer. A simplified version of the semantic match that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression t,f,d; @@ -init_timer(&t); +setup_timer(

[PATCH 0/27] Use setup_timer

2014-12-26 Thread Julia Lawall
These patches group a call to init_timer and initialization of the function and data fields into a call to setup_timer. Is there is no initialization of the data field before add_timer is called, the the data value is set to 0UL. If the data value has a cast to something other than unsigned long,

[PATCH 5/27] [media] usbvision: Use setup_timer

2014-12-26 Thread Julia Lawall
Convert a call to init_timer and accompanying intializations of the timer's data and function fields to a call to setup_timer. A simplified version of the semantic match that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression t,f,d; @@ -init_timer(&t); +setup_timer(

Re: [RFC PATCH 0/3] Introduce IIO interface for fingerprint sensors

2014-12-26 Thread Jonathan Cameron
On 18/12/14 16:51, Lars-Peter Clausen wrote: > Adding V4L folks to Cc for more input. Thanks Lars - we definitely would need the v4l guys to agree to a driver like this going in IIO. (not that I'm convinced it should!) > > On 12/08/2014 03:10 PM, Baluta, Teodora wrote: >> Hello, >> >> On Vi, 2014-

Re: [RFC/PATCH] dvb-core: add template code for i2c binding model

2014-12-26 Thread Akihiro TSUKADA
ping. we don't need this kind of feature in the dvb-core? -- akihiro -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] dvb: tc90522: re-add symbol-rate report

2014-12-26 Thread tskd08
From: Akihiro Tsukada symbol-rate report was wrongly removed off by the commit:906aaf5a . Signed-off-by: Akihiro Tsukada --- drivers/media/dvb-frontends/tc90522.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/dvb-frontends/tc90522.c b/drivers/media/dvb-frontends/tc90522.c

Re: [PATCH v4 2/5] media: ov2640: add async probe function

2014-12-26 Thread Guennadi Liakhovetski
On Fri, 26 Dec 2014, Laurent Pinchart wrote: > Hi Guennadi, > > On Friday 26 December 2014 10:14:26 Guennadi Liakhovetski wrote: > > On Fri, 26 Dec 2014, Laurent Pinchart wrote: > > > On Friday 26 December 2014 14:37:14 Josh Wu wrote: > > >> On 12/25/2014 6:39 AM, Guennadi Liakhovetski wrote: > >

Re: [PATCH v4 2/5] media: ov2640: add async probe function

2014-12-26 Thread Laurent Pinchart
Hi Guennadi, On Friday 26 December 2014 10:14:26 Guennadi Liakhovetski wrote: > On Fri, 26 Dec 2014, Laurent Pinchart wrote: > > On Friday 26 December 2014 14:37:14 Josh Wu wrote: > >> On 12/25/2014 6:39 AM, Guennadi Liakhovetski wrote: > >>> On Mon, 22 Dec 2014, Josh Wu wrote: > On 12/20/201

Re: [PATCH v7 1/3] of: Decrement refcount of previous endpoint in of_graph_get_next_endpoint

2014-12-26 Thread Laurent Pinchart
Hi Philipp, Thank you for the patch. On Tuesday 23 December 2014 14:09:16 Philipp Zabel wrote: > Decrementing the reference count of the previous endpoint node allows to > use the of_graph_get_next_endpoint function in a for_each_... style macro. > All current users of this function that pass a n

Re: [PATCH v4 2/5] media: ov2640: add async probe function

2014-12-26 Thread Guennadi Liakhovetski
Hi Laurent, On Fri, 26 Dec 2014, Laurent Pinchart wrote: > Hi Josh, > > On Friday 26 December 2014 14:37:14 Josh Wu wrote: > > On 12/25/2014 6:39 AM, Guennadi Liakhovetski wrote: > > > On Mon, 22 Dec 2014, Josh Wu wrote: > > >> On 12/20/2014 6:16 AM, Guennadi Liakhovetski wrote: > > >>> On Fri,

Re: [PATCH v4 2/5] media: ov2640: add async probe function

2014-12-26 Thread Laurent Pinchart
Hi Josh, On Friday 26 December 2014 14:37:14 Josh Wu wrote: > On 12/25/2014 6:39 AM, Guennadi Liakhovetski wrote: > > On Mon, 22 Dec 2014, Josh Wu wrote: > >> On 12/20/2014 6:16 AM, Guennadi Liakhovetski wrote: > >>> On Fri, 19 Dec 2014, Josh Wu wrote: > On 12/19/2014 5:59 AM, Guennadi Liakho