cron job: media_tree daily build: OK

2014-07-10 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: Fri Jul 11 04:00:21 CEST 2014 git branch: test git hash: 3c0d394ea7022bb9666d9df97a5776c4bcc3045c gcc versi

Re: [PATCH] [media] staging/solo6x10: SOLO6X10 should select BITREVERSE

2014-07-10 Thread Ismael Luceno
On Sun, 6 Jul 2014 10:58:41 +0200 Geert Uytterhoeven wrote: > If CONFIG_SOLO6X10=y, but CONFIG_BITREVERSE=m: > > drivers/built-in.o: In function `solo_osd_print': > (.text+0x1c7a1f): undefined reference to `byte_rev_table' > make: *** [vmlinux] Error 1 > > Reported-by: kbuild test r

Re: [PATCH 2/2] solo6x10: update GOP size, QP immediately

2014-07-10 Thread Ismael Luceno
On Tue, 8 Jul 2014 18:23:33 +0300 Andrey Utkin wrote: > Previously, it was needed to reopen device to update GOP size and > quantization parameter. Now we update device registers with new values > immediately. > > Signed-off-by: Andrey Utkin > --- > drivers/staging/media/solo6x10/solo6x10-v4l2

Re: [PATCH 1/2] solo6x10: expose encoder quantization setting as V4L2 control

2014-07-10 Thread Ismael Luceno
On Tue, 8 Jul 2014 18:23:32 +0300 Andrey Utkin wrote: > solo6*10 boards have configurable quantization parameter which takes > values from 0 to 31, inclusively. > > This change enables setting it with ioctl VIDIOC_S_CTRL with id > V4L2_CID_MPEG_VIDEO_H264_MIN_QP. > > Signed-off-by: Andrey Utkin

Re: [PATCH/RFC v3 5/5] media: Add registration helpers for V4L2 flash sub-devices

2014-07-10 Thread Sakari Ailus
Hi Jacek, On Fri, May 09, 2014 at 09:18:55AM +0200, Jacek Anaszewski wrote: > Hi Sakari, > > On 05/07/2014 09:58 AM, Sakari Ailus wrote: > >Hi Jacek, > > > >On Wed, May 07, 2014 at 09:20:17AM +0200, Jacek Anaszewski wrote: > >>On 05/06/2014 11:10 AM, Sakari Ailus wrote: > >>>Hi Jacek, > >>> > >>>

Configurable Video Controller Driver

2014-07-10 Thread Julien BERAUD
Hi, We are developing a driver for our video controller which has the particularity of being very reconfigurable. We have reached a point at which the complexity and variety of the applications we need to implement forces us to design an api/library that allows us to configure the interconnec

Re: [PATCH v3.1 3/3] smiapp: Implement the test pattern control

2014-07-10 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Thursday 29 May 2014 18:16:54 Sakari Ailus wrote: > Add support for the V4L2_CID_TEST_PATTERN control. When the solid colour > mode is selected, additional controls become available for setting the > solid four solid colour components. > > Signed-off-by: Sa

Re: [PATCH] media: pvrusb2: make logging code sane

2014-07-10 Thread isely
Nice. I wonder if a previous merge mechanically resulted in this. I can't imagine deliberately writing code like that. -Mike Acked-by: Mike Isely On Thu, 10 Jul 2014, Andrey Utkin wrote: > The issue was discovered by static analysis. It turns out that code is > somewhat insane, being >

[PATCH] media: pvrusb2: make logging code sane

2014-07-10 Thread Andrey Utkin
The issue was discovered by static analysis. It turns out that code is somewhat insane, being if (x) {...} else { if (x) {...} } Edited it to do the only reasonable thing, which is to log the information about the failed call. The most descriptive logging commands set is taken from original code.

Re: [PATCH v1 3/5] crypto: qat - use seq_hex_dump() to dump buffers

2014-07-10 Thread Andy Shevchenko
On Wed, 2014-07-09 at 11:31 -0700, Tadeusz Struk wrote: > On 07/09/2014 08:24 AM, Andy Shevchenko wrote: > > > In this case it slightly changes the output, namely the four tetrads will be > > output on one line. > > > > Signed-off-by: Andy Shevchenko > > It's ok, I can still read it. It seems

[PATCH 2/2] m88ds3103: implement BER

2014-07-10 Thread Antti Palosaari
Implement read_ber for BER estimate. Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/m88ds3103.c | 81 drivers/media/dvb-frontends/m88ds3103_priv.h | 1 + 2 files changed, 82 insertions(+) diff --git a/drivers/media/dvb-frontends/m88ds3103.c b/

[PATCH 1/2] m88ds3103: fix SNR reporting on 32-bit arch

2014-07-10 Thread Antti Palosaari
There was 32-bit calculation overflow. Use div_u64. Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/m88ds3103.c | 4 ++-- drivers/media/dvb-frontends/m88ds3103_priv.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb-frontends/m88ds3103.c

[PATCH 2/4] si2168: implement sleep

2014-07-10 Thread Antti Palosaari
Implement sleep for power-management. Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/si2168.c | 19 --- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c index 8637d2e..0d054

[PATCH 3/4] si2168: set cmd args using memcpy

2014-07-10 Thread Antti Palosaari
Use memcpy for set cmd buffer in order to keep style in line with rest of file. Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/si2168.c | 48 +++- 1 file changed, 9 insertions(+), 39 deletions(-) diff --git a/drivers/media/dvb-frontends/si2168.c

[PATCH 1/4] si2157: implement sleep

2014-07-10 Thread Antti Palosaari
Implement sleep for power-management. Signed-off-by: Antti Palosaari --- drivers/media/tuners/si2157.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/drivers/media/tuners/si2157.c b/drivers/media/tuners/si2157.c index 271a752..3f88e53 100644 --- a/drivers/media/tuners/si2157.c

[PATCH 4/4] si2168: implement CNR statistic

2014-07-10 Thread Antti Palosaari
Implement CNR statistic. Signed-off-by: Antti Palosaari --- drivers/media/dvb-frontends/si2168.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c index 3a40181..d561d2c 100644 --- a/drivers/media/dvb-fronten

Re: [PATCH 3/4] media: rcar_vin: Fix race condition terminating stream

2014-07-10 Thread Ian Molton
On Tue, 08 Jul 2014 20:09:58 +0400 Sergei Shtylyov wrote: > Hello. Hi, > > Signed-off-by: Ian Molton > > Signed-off-by: William Towle > > --- > > drivers/media/platform/soc_camera/rcar_vin.c | 43 > > ++-- > > 1 file changed, 28 insertions(+), 15 deletions(-) > >

Re: RFC: soc_camera, rcar_vin, and adv7604

2014-07-10 Thread Ian Molton
On Wed, 9 Jul 2014 22:34:07 +0200 (CEST) Guennadi Liakhovetski wrote: > Maybe we dould add some support, say, to > help with (fake) file handles just to aid the transition. Indeed - the filehandles are probably the biggest sticking point. I already have the soc_camera code able to select mutu

Re: [PATCH v1 1/5] seq_file: provide an analogue of print_hex_dump()

2014-07-10 Thread Joe Perches
On Thu, 2014-07-10 at 12:50 +0300, Andy Shevchenko wrote: > I have considered to modify hex_dump_to_buffer() to return how many > bytes it actually proceed to the buffer. In that case we can directly > print to m->buf like other seq_ calls do. > > But I still have doubts about it. Any opinion? Si

Re: [PATCH v1 5/5] [S390] zcrypt: use seq_hex_dump() to dump buffers

2014-07-10 Thread Andy Shevchenko
On Wed, 2014-07-09 at 18:24 +0300, Andy Shevchenko wrote: > Instead of custom approach let's use recently introduced seq_hex_dump() > helper. > > In this case it slightly changes the output, namely the four tetrads will be > output on one line. The above paragraph is not true and will be removed

Re: [PATCH v1 1/5] seq_file: provide an analogue of print_hex_dump()

2014-07-10 Thread Andy Shevchenko
On Thu, 2014-07-10 at 09:58 +0200, Marek Vasut wrote: > On Wednesday, July 09, 2014 at 11:21:08 PM, Joe Perches wrote: > > On Wed, 2014-07-09 at 22:39 +0200, Marek Vasut wrote: > > > The above function looks like almost verbatim copy of print_hex_dump(). > > > The only difference I can spot is that

Re: [PATCH v1 1/5] seq_file: provide an analogue of print_hex_dump()

2014-07-10 Thread Marek Vasut
On Wednesday, July 09, 2014 at 11:21:08 PM, Joe Perches wrote: > On Wed, 2014-07-09 at 22:39 +0200, Marek Vasut wrote: > > The above function looks like almost verbatim copy of print_hex_dump(). > > The only difference I can spot is that it's calling seq_printf() instead > > of printk(). Can you no

[PATCH v2 1/3] s5p-mfc: Fix selective sclk_mfc init

2014-07-10 Thread Jacek Anaszewski
fc906b6d "Remove special clock usage in driver" removed initialization of MFC special clock, arguing that there's no need to do it explicitly, since it's one of MFC gate clock's dependencies and gets enabled along with it. However, there's no promise of keeping this hierarchy across Exynos SoC rele

[PATCH v2 2/3] ARM: dts: exynos3250 add MFC codec device node

2014-07-10 Thread Jacek Anaszewski
Signed-off-by: Jacek Anaszewski Signed-off-by: Kyungmin Park Cc: Rob Herring Cc: Pawel Moll Cc: Mark Rutland Cc: Ian Campbell Cc: Kumar Gala Cc: devicet...@vger.kernel.org --- arch/arm/boot/dts/exynos3250.dtsi | 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/arm/boot/

[PATCH v2 3/3] DT: s5p-mfc: Document exynos3250 SoC related settings

2014-07-10 Thread Jacek Anaszewski
Signed-off-by: Jacek Anaszewski Signed-off-by: Kyungmin Park Cc: Rob Herring Cc: Pawel Moll Cc: Mark Rutland Cc: Ian Campbell Cc: Kumar Gala Cc: devicet...@vger.kernel.org --- .../devicetree/bindings/media/s5p-mfc.txt | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(

[PATCH v2 0/3] Add support for Exynos3250 SoC to s5p-mfc driver

2014-07-10 Thread Jacek Anaszewski
This is second version of the patch set that adds support for MFC codec on Exynos3250 to the s5p-mfc driver (Sachin and Arun - thanks for a review). = Changes since v1: = - made SCLK an optional parameter, as not all the devices with the same MFC version require i

RE: Troubleshooting problematic DVB-T reception

2014-07-10 Thread Lukas Tribus
Hi Devin! > Date: Wed, 9 Jul 2014 09:21:02 -0400 > Subject: Re: Troubleshooting problematic DVB-T reception > From: dheitmuel...@kernellabs.com > To: luky...@hotmail.com > CC: linux-media@vger.kernel.org > >> I am trying to troubleshoot a (non-linux relat