Re: [PATCH 01/12] trivial: drivers/media/usb/gspca/gspca.c: fix the indentation of a comment

2014-09-01 Thread Antonio Ospite
On Wed, 4 Jun 2014 14:03:39 +0200 Antonio Ospite a...@ao2.it wrote: Fix indentation of a comment, put it on the same level of the code it refers to. Signed-off-by: Antonio Ospite a...@ao2.it Cc: Hans de Goede hdego...@redhat.com Cc: linux-media@vger.kernel.org Ping, I cannot see this in

Re: [PATCH 02/12] trivial: drivers/media/usb/gspca/gspca.h: indent with TABs, not spaces

2014-09-01 Thread Antonio Ospite
On Wed, 4 Jun 2014 14:03:40 +0200 Antonio Ospite a...@ao2.it wrote: Signed-off-by: Antonio Ospite a...@ao2.it Cc: Hans de Goede hdego...@redhat.com Cc: linux-media@vger.kernel.org Ping. linux-media patchwork link: https://patchwork.linuxtv.org/patch/24156/ Thanks, Antonio ---

Re: HVR 900 (USB ID 2040:6500) no analogue sound reloaded

2014-09-01 Thread Oravecz Csaba
Sun Aug 31 17:07:00 2014 =?windows-1252?Q?Frank_Sch=E4fer?= kirjutas: Am 22.08.2014 um 21:03 schrieb Oravecz Csaba: I reported this issue earlier but for some reason it went pretty much unnoticed. The essence is that with the newest em28xx drivers now present in 3.14 kernels (i'm on

RE: s5p-mfc should allow multiple call to REQBUFS before we start streaming

2014-09-01 Thread Kamil Debski
Hi Nicolas, From: Nicolas Dufresne [mailto:nicolas.dufre...@collabora.com] Sent: Friday, August 29, 2014 3:47 PM Hi Kamil, after a discussion on IRC, we concluded that s5p-mfc have this bug that disallow multiple reqbufs calls before streaming. This has the impact that it forces to

Re: [PATCH v2 4/5] tc90522: add driver for Toshiba TC90522 quad demodulator

2014-09-01 Thread Akihiro TSUKADA
Hi, Also, I would like to see all new drivers (demod and tuner) implemented as a standard kernel I2C drivers (or any other bus). I have converted already quite many drivers, si2168, si2157, m88ds3103, m88ts2022, it913x, tda18212, ... I wrote the code in the old style using dvb_attach()

Re: [PATCH v2 2/2] adv7604: Use DT parsing in dummy creation

2014-09-01 Thread Jean-Michel Hautbois
2014-08-31 19:18 GMT+02:00 Laurent Pinchart laurent.pinch...@ideasonboard.com: Hi Jean-Michel, Thank you for the patch. On Friday 29 August 2014 17:15:03 Jean-Michel Hautbois wrote: This patch uses DT in order to parse addresses for dummy devices of adv7604. The ADV7604 has thirteen

[PATCH 3/4] s5p-jpeg: avoid overwriting JPEG_CNTL register settings

2014-09-01 Thread Jacek Anaszewski
Take into account the JPEG_CNTL register value read before setting SYS_INT_EN bit field. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com --- drivers/media/platform/s5p-jpeg/jpeg-hw-exynos4.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 2/4] s5p-jpeg: remove stray call to readl

2014-09-01 Thread Jacek Anaszewski
There is no need to read INT_EN_REG before enabling interrupts. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com --- drivers/media/platform/s5p-jpeg/jpeg-hw-exynos4.c |3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/media/platform/s5p-jpeg/jpeg-hw-exynos4.c

[PATCH 1/4] s5p-jpeg: Avoid assigning readl result

2014-09-01 Thread Jacek Anaszewski
Avoid gcc warning when -Wunused-but-set-variable is enabled. The readl return value need not to be assigned to any variable as the reading itself is just a part of a sequence required for clearing the interrupt flag. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com ---

[PATCH 4/4] s5p-jpeg: fix HUF_TBL_EN bit clearing path

2014-09-01 Thread Jacek Anaszewski
Use proper bitwise operator while clearing HUF_TBL_EN bit. Signed-off-by: Jacek Anaszewski j.anaszew...@samsung.com --- drivers/media/platform/s5p-jpeg/jpeg-hw-exynos4.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/s5p-jpeg/jpeg-hw-exynos4.c

[PATCH] v4l: vsp1: fix driver dependencies

2014-09-01 Thread Bartlomiej Zolnierkiewicz
Renesas VSP1 Video Processing Engine support should be available only on Renesas ARM SoCs. Signed-off-by: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Simon Horman ho...@verge.net.au Cc: Magnus Damm magnus.d...@gmail.com ---

Re: [PATCH] videobuf: Allow reqbufs(0) to free current buffers

2014-09-01 Thread Hans Verkuil
Hi Hans, At first glance this looks fine. But making changes in videobuf is always scary :-) so I hope Marek can look at this as well. How well was this tested? I'll try do test this as well. Regards, Hans On 08/31/2014 12:19 PM, Hans de Goede wrote: All the infrastructure for this

[PULL patches for 3.18]: 2 gspca cleanup patches

2014-09-01 Thread Hans de Goede
Hi Mauro, Please pull from my tree for 2 minor gspca cleanup patches: The following changes since commit b250392f7b5062cf026b1423e27265e278fd6b30: [media] media: ttpci: fix av7110 build to be compatible with CONFIG_INPUT_EVDEV (2014-08-21 15:25:38 -0500) are available in the git repository

Re: [PATCH] videobuf: Allow reqbufs(0) to free current buffers

2014-09-01 Thread Hans de Goede
Hi, On 09/01/2014 03:29 PM, Hans Verkuil wrote: Hi Hans, At first glance this looks fine. But making changes in videobuf is always scary :-) so I hope Marek can look at this as well. How well was this tested? I ran some tests on bttv which all ran well. Note that the code already

Re: s5p-mfc should allow multiple call to REQBUFS before we start streaming

2014-09-01 Thread Nicolas Dufresne
Le 2014-09-01 05:43, Kamil Debski a écrit : Hi Nicolas, From: Nicolas Dufresne [mailto:nicolas.dufre...@collabora.com] Sent: Friday, August 29, 2014 3:47 PM Hi Kamil, after a discussion on IRC, we concluded that s5p-mfc have this bug that disallow multiple reqbufs calls before streaming.

Re: [PATCH] v4l: vsp1: fix driver dependencies

2014-09-01 Thread Geert Uytterhoeven
On Mon, Sep 1, 2014 at 3:18 PM, Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com wrote: Renesas VSP1 Video Processing Engine support should be available only on Renesas ARM SoCs. Thanks! Signed-off-by: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com Acked-by: Kyungmin Park

sale cisco switches

2014-09-01 Thread AMY
HI We sale cisco new and original switches and routers, following is the product and price list. If you are interested, please contact me! WS-C3750X-24S-S WS-C3750X-48P-S WS-C2960S-24TS-L WS-C2960S-48TS-L WS-C2960S-48LPS-L WS-C2960S-48FPS-L WS-C2960S-48LPD-L WS-C2960S-48FPD-L MY

Re: strange empia device

2014-09-01 Thread Frank Schäfer
Am 31.08.2014 um 17:41 schrieb Lorenzo Marcantonio: On Sun, Aug 31, 2014 at 04:50:08PM +0200, Frank Schäfer wrote: Hmm... could you send us the output of lsusb -v -d 1b80:e31d ? Sure, here is it. However it seems that roxio violated the most sacred USB rule (i.e. they use that vid/pid for two

Re: HVR 900 (USB ID 2040:6500) no analogue sound reloaded

2014-09-01 Thread Frank Schäfer
Am 01.09.2014 um 09:31 schrieb Oravecz Csaba: Sun Aug 31 17:07:00 2014 =?windows-1252?Q?Frank_Sch=E4fer?= kirjutas: Am 22.08.2014 um 21:03 schrieb Oravecz Csaba: I reported this issue earlier but for some reason it went pretty much unnoticed. The essence is that with the newest em28xx

Re: strange empia device

2014-09-01 Thread Lorenzo Marcantonio
On Mon, Sep 01, 2014 at 08:14:25PM +0200, Frank Schäfer wrote: What's the other device using this vid:pid and which hardware does it use ? The previous generation of the tool: http://www.linuxtv.org/wiki/index.php/RoxioEasyVHStoDVD ... an easycap DC60+ clone. Doubly hating it since I bought

[PATCH for 3.17] Revert [media] em28xx: check if a device has audio earlier

2014-09-01 Thread Frank Schäfer
This reverts commit b99f0aadd33fad269c8e62b5bec8b5c012a44a56 Author: Mauro Carvalho Chehab m.che...@samsung.com Date: Fri Dec 27 00:16:13 2013 -0300 [media] em28xx: check if a device has audio earlier Better to split chipset detection from the audio setup. So, move the detection

Re: strange empia device

2014-09-01 Thread Frank Schäfer
Am 01.09.2014 um 21:03 schrieb Lorenzo Marcantonio: On Mon, Sep 01, 2014 at 08:14:25PM +0200, Frank Schäfer wrote: What's the other device using this vid:pid and which hardware does it use ? The previous generation of the tool: http://www.linuxtv.org/wiki/index.php/RoxioEasyVHStoDVD ...

Re: [PATCH] v4l: vsp1: fix driver dependencies

2014-09-01 Thread Simon Horman
On Mon, Sep 01, 2014 at 06:32:56PM +0200, Geert Uytterhoeven wrote: On Mon, Sep 1, 2014 at 3:18 PM, Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com wrote: Renesas VSP1 Video Processing Engine support should be available only on Renesas ARM SoCs. Thanks! Signed-off-by: Bartlomiej

Re: [PATCH 3/3] media: check status of dmxdev-exit in poll functions of demuxdvr

2014-09-01 Thread Antti Palosaari
Moikka Changbing and thanks to working that. I reviewed the first patch and tested all these patches. It does not deadlock USB device anymore because of patch #1 so it is improvement. However, what I expect that patch, it should force device unregister but when I use tzap and unplug running

Re: strange empia device

2014-09-01 Thread Andy Walls
On Sun, 2014-08-31 at 16:47 +0200, Frank Schäfer wrote: Hi Lorenzo, Am 25.08.2014 um 21:01 schrieb Lorenzo Marcantonio: Just bought a roxio video capture dongle. Read around that it was an easycap clone (supported, then); it seems it's not so anymore :( It identifies as 1b80:e31d Roxio

Re: [PATCH 3/3] media: check status of dmxdev-exit in poll functions of demuxdvr

2014-09-01 Thread Mauro Carvalho Chehab
Em Tue, 02 Sep 2014 02:58:50 +0300 Antti Palosaari cr...@iki.fi escreveu: Moikka Changbing and thanks to working that. I reviewed the first patch and tested all these patches. It does not deadlock USB device anymore because of patch #1 so it is improvement. However, what I expect that

dvbv5-scan segfaults when invalid freqs got from tables

2014-09-01 Thread Antti Palosaari
Mauro, Could you look that one too? There is utterly broken data got from tables and it crashes always. Antti [crope@localhost dvb]$ ./dvbv5-scan mux-Oulu-t2 Scanning frequency #1 17750 Lock (0x1f) Service Showtime, provider DNA: reserved Service Eurosport 2, provider DNA: reserved

cron job: media_tree daily build: WARNINGS

2014-09-01 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 Sep 2 04:00:18 CEST 2014 git branch: test git hash: b250392f7b5062cf026b1423e27265e278fd6b30 gcc

Re: Re: [PATCH 3/3] media: check status of dmxdev-exit in poll functions of demuxdvr

2014-09-01 Thread Changbing Xiong
Well, we may start returning -ENODEV when such event happens. At the frontend, we could use fe-exit = DVB_FE_DEVICE_REMOVED to signalize it. I don't think that the demod frontend has something similar. Yet, it should be up to the userspace application to properly handle the error codes