cron job: media_tree daily build: ERRORS

2014-02-03 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: Tue Feb 4 04:00:30 CET 2014 git branch: test git hash: c29b8f3149f2916e98fc3b8d6c1df2137d003979 gcc versio

[PATCH 2/4] e4000: implement controls via v4l2 control framework

2014-02-03 Thread Antti Palosaari
Implement gain and bandwidth controls using v4l2 control framework. Pointer to control handler is provided by exported symbol. Cc: Mauro Carvalho Chehab Cc: Hans Verkuil Signed-off-by: Antti Palosaari --- drivers/media/tuners/e4000.c | 142 +- drivers/m

[PATCH 3/4] rtl2832_sdr: use E4000 tuner controls via V4L framework

2014-02-03 Thread Antti Palosaari
Use V4L2 control framework for E4000 tuner as it provides controls that way now. Cc: Mauro Carvalho Chehab Cc: Hans Verkuil Signed-off-by: Antti Palosaari --- drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c | 92 +--- 1 file changed, 34 insertions(+), 58 deletions(-) diff

[PATCH 0/4] use V4L2 control framework for DVB tuner

2014-02-03 Thread Antti Palosaari
Mauro blamed a little my earlier solution where I provided runtime tuner gain controls using DVB .set_config() callback. So here it is, new solution which uses V4L2 control framework instead. Hehe, implementation didn't look bad at all IMHO. It was a pretty simple, but sounds strange as tuner sits

[PATCH 4/4] e4000: remove .set_config() which was for controls

2014-02-03 Thread Antti Palosaari
That custom DVB callback is not needed anymore for setting gain controls as those are now implemented using V4L2 control framework. That change was proposed by Mauro. Cc: Mauro Carvalho Chehab Signed-off-by: Antti Palosaari --- drivers/media/tuners/e4000.c | 68

[PATCH 1/4] rtl28xxu: attach SDR module later

2014-02-03 Thread Antti Palosaari
SDR module was attached between demod and tuner. Change it happen after tuner attached. We are going to implement V4L controls for tuner drivers and those controls are loaded during SDR attach. Due to that (tuner controls), tuner driver must be loaded before SDR module. Also as we are here, limit

Re: report success with USB DVB-T device - "August DVB-T205"

2014-02-03 Thread Antti Palosaari
Moikka On 03.02.2014 20:37, divenal+catch...@plus.com wrote: Hi, I tried to add this directly to the wiki list of devices, but failed. Either I'm too thick to follow the instructions, or there's a permission problem trying to edit the template area. Perhaps someone can do the honours. Apolog

Re: Terratec H7 with yet another usb ID

2014-02-03 Thread Antti Palosaari
Hei Rik On 03.02.2014 22:21, Rik van Mierlo wrote: Hi, I've recently purchased a Terratec H7, based on the fact that is was supported for a while now. Unfortunately, it turns out that my device uses a different product id, and maybe is not quite the same device inside either. ProductID for the

Terratec H7 with yet another usb ID

2014-02-03 Thread Rik van Mierlo
Hi, I've recently purchased a Terratec H7, based on the fact that is was supported for a while now. Unfortunately, it turns out that my device uses a different product id, and maybe is not quite the same device inside either. ProductID for the Terratec H7 revisions in the module is either 10

report success with USB DVB-T device - "August DVB-T205"

2014-02-03 Thread divenal+catchall
Hi, I tried to add this directly to the wiki list of devices, but failed. Either I'm too thick to follow the instructions, or there's a permission problem trying to edit the template area. Perhaps someone can do the honours. Apologies if this is an inappropriate use of the mailing list, or if it

[PATCH] dma-buf: update debugfs output

2014-02-03 Thread Sumit Semwal
Russell King observed 'wierd' looking output from debugfs, and also suggested better ways of getting device names (use KBUILD_MODNAME, dev_name()) This patch addresses these issues to make the debugfs output correct and better looking. Signed-off-by: Sumit Semwal --- drivers/base/dma-buf.c | 1

HVR 930c - no /dev/dvb

2014-02-03 Thread Simon Szustkowski
Hi, i hope this is the right mailing list and not developers only. I am trying to install a Hauppauge HVR 930c Stick on a Ubuntu 12.04 box. My problem is: I have no /dev/dvb/ created, but instead a /dev/v4l/by-path/pci-\:00\:14.0-usb-0\:2-video-index1, although i followed exactly the instr

[PATCH] [media] uvcvideo: Check format and frame size in VIDIOC_CREATE_BUFS

2014-02-03 Thread Philipp Zabel
Verify that create_bufs requests buffers with the currently selected format and frame size, return an error otherwise. Signed-off-by: Philipp Zabel --- drivers/media/usb/uvc/uvc_v4l2.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/

[PATCH 0/5] separate MSi001 driver from MSi3101 driver

2014-02-03 Thread Antti Palosaari
Split MSi001 RF tuner driver out from MSi3101 module. It is implemented as SPI driver binding model offering V4L subdevice as control interface. Wonder how much whine this will cause as implementing E4000 driver using I2C driver model earlier... It is yet another, even much more exotic bus than I2

[PATCH 3/5] MAINTAINERS: add msi001 driver

2014-02-03 Thread Antti Palosaari
Mirics MSi001 silicon tuner driver. Currently in staging as SDR API is not ready. Signed-off-by: Antti Palosaari --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 08701bd..69fc44b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -5685,6

[PATCH 4/5] MAINTAINERS: add msi3101 driver

2014-02-03 Thread Antti Palosaari
Mirics MSi2500 (MSi3101) SDR ADC + USB interface driver. Currently in staging as SDR API is not ready. Signed-off-by: Antti Palosaari --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 69fc44b..4c1b8cc 100644 --- a/MAINTAINERS +++ b/MA

[PATCH 2/5] msi3101: use msi001 tuner driver

2014-02-03 Thread Antti Palosaari
Remove MSi001 RF tuner related code as MSi001 functionality is moved to own driver. Implement SPI master adapter. Attach MSi001 driver via SPI / V4L subdev framework. Signed-off-by: Antti Palosaari --- drivers/staging/media/msi3101/Kconfig | 2 + drivers/staging/media/msi3101/sdr-msi31

[PATCH 5/5] MAINTAINERS: add rtl2832_sdr driver

2014-02-03 Thread Antti Palosaari
Realtek RTL2832 SDR driver. Currently in staging as SDR API is not ready. Signed-off-by: Antti Palosaari --- MAINTAINERS | 10 ++ 1 file changed, 10 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 4c1b8cc..c39f771 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7200,6 +7200,16

[PATCH 1/5] msi001: Mirics MSi001 silicon tuner driver

2014-02-03 Thread Antti Palosaari
That RF tuner driver is bound via SPI bus model and it implements V4L subdev API. I split it out from MSi3101 SDR driver. MSi3101 = MSi2500 + MSi001. Signed-off-by: Antti Palosaari --- drivers/staging/media/msi3101/Kconfig | 5 + drivers/staging/media/msi3101/Makefile | 1 + drivers/staging

[GIT PULL FOR v3.15] Updates for 3.15

2014-02-03 Thread Hans Verkuil
Hi Mauro, The usual list of updates. I also decided to add my DocBook changes to this pull request. Regards, Hans The following changes since commit 587d1b06e07b4a079453c74ba9edf17d21931049: [media] rc-core: reuse device numbers (2014-01-15 11:46:37 -0200) are available in the git r

Kedves: Webmail Előfizető

2014-02-03 Thread webmail update 2014
Kedves: Webmail Előfizető Ezúton jelentjük be nektek, hogy az e-mail fiók elérte tárolási kapacitást. Ön nem lesz képes küldeni és fogadni e-maileket és a e-mail fiók törlődik a szerverről. A probléma elkerülése érdekében, Kattintson az alábbi linkre frissítési utasítások http://webmailupdate7

Re: [PATCH 15/17] v4l: add RF tuner channel bandwidth control

2014-02-03 Thread Hans Verkuil
On 02/03/2014 11:13 AM, Antti Palosaari wrote: > On 03.02.2014 11:08, Hans Verkuil wrote: >> Hi Antti, >> >> On 02/01/2014 03:24 PM, Antti Palosaari wrote: >>> Modern silicon RF tuners has one or more adjustable filters on >>> signal path, in order to filter noise from desired radio channel. >>>

Re: [PATCH 15/17] v4l: add RF tuner channel bandwidth control

2014-02-03 Thread Antti Palosaari
On 03.02.2014 11:11, Hans Verkuil wrote: On 02/03/2014 10:08 AM, Hans Verkuil wrote: Hi Antti, On 02/01/2014 03:24 PM, Antti Palosaari wrote: Modern silicon RF tuners has one or more adjustable filters on signal path, in order to filter noise from desired radio channel. Add channel bandwidt

Re: [PATCH v10 1/2] [media] exynos5-is: Adds DT binding documentation

2014-02-03 Thread Arun Kumar K
Hi Mark, This patch and hence a full series of 13 patches is waiting for a long time now due to your missing ack on this DT binding patch. I have addressed your review comments given on earlier version - http://www.spinics.net/lists/devicetree/msg11550.html Please check this and give an ack if it

Re: [PATCH 15/17] v4l: add RF tuner channel bandwidth control

2014-02-03 Thread Antti Palosaari
On 03.02.2014 11:08, Hans Verkuil wrote: Hi Antti, On 02/01/2014 03:24 PM, Antti Palosaari wrote: Modern silicon RF tuners has one or more adjustable filters on signal path, in order to filter noise from desired radio channel. Add channel bandwidth control to tell the driver which is radio cha

[GIT PULL FOR v3.14]

2014-02-03 Thread Hans Verkuil
Hi Mauro, Three bug fixes that I would like to see merged for 3.14. Regards, Hans The following changes since commit 587d1b06e07b4a079453c74ba9edf17d21931049: [media] rc-core: reuse device numbers (2014-01-15 11:46:37 -0200) are available in the git repository at: git://linuxtv.o

Re: [PATCH] s2255drv: port to videobuf2

2014-02-03 Thread Hans Verkuil
Hi Dean, Some specific comments below, but first two general comments: It is easier to review if at least the removal of the old s2255_fh struct was done as a separate patch. It's always good to try and keep the changes in patches as small as possible. The actual vb2 conversion is always a 'big b

Re: [PATCH 15/17] v4l: add RF tuner channel bandwidth control

2014-02-03 Thread Hans Verkuil
On 02/03/2014 10:08 AM, Hans Verkuil wrote: > Hi Antti, > > On 02/01/2014 03:24 PM, Antti Palosaari wrote: >> Modern silicon RF tuners has one or more adjustable filters on >> signal path, in order to filter noise from desired radio channel. >> >> Add channel bandwidth control to tell the driver

Re: [PATCH 15/17] v4l: add RF tuner channel bandwidth control

2014-02-03 Thread Hans Verkuil
Hi Antti, On 02/01/2014 03:24 PM, Antti Palosaari wrote: > Modern silicon RF tuners has one or more adjustable filters on > signal path, in order to filter noise from desired radio channel. > > Add channel bandwidth control to tell the driver which is radio > channel width we want receive. Filter

Re: [PATCH] [media] uvcvideo: Enable VIDIOC_CREATE_BUFS

2014-02-03 Thread Hans Verkuil
Hi Philipp, Laurent, On 02/02/2014 02:04 PM, Philipp Zabel wrote: > On Sun, Feb 02, 2014 at 11:21:13AM +0100, Laurent Pinchart wrote: >> Hi Hans, >> >> On Friday 31 January 2014 09:43:00 Hans Verkuil wrote: >>> I think you might want to add a check in uvc_queue_setup to verify the >>> fmt that cre

Re: [RFC PATCH 0/2] Allow inheritance of private controls

2014-02-03 Thread Hans Verkuil
Hi Laurent, On 02/02/2014 10:45 AM, Laurent Pinchart wrote: > Hi Hans, > > Thank you for the patches. > > On Friday 31 January 2014 12:12:04 Hans Verkuil wrote: >> Devices with a simple video pipeline may want to inherit private controls >> of sub-devices and expose them to the video node instea