Re: [PATCH] [media] s5p-fimc: fimc_stop_capture bug fix

2010-12-30 Thread Sylwester Nawrocki
On 12/30/2010 06:35 AM, Sungchun Kang wrote: When is called fimc_stop_capture, it seems that wait_event_timeout used improperly. It should be wake up by irq handler. Reviewed-by Jonghun Hanjonghun@samsung.com Signed-off-by: Sungchun Kangsungchun.k...@samsung.com --- This patch is depended

[RFC V8 6/7] drivers:media:radio: wl128x: Kconfig Makefile for wl128x driver

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/Kconfig | 17 + drivers/media/radio/wl128x/Makefile |6 ++ 2 files changed, 23 insertions(+), 0 deletions(-) create mode 100644

[RFC V8 2/7] drivers:media:radio: wl128x: fmdrv_v4l2 sources

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This module interfaces V4L2 subsystem and FM common module. It registers itself with V4L2 as Radio module. Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_v4l2.c | 593 +++

[RFC V8 7/7] drivers:media:radio: Update Kconfig and Makefile for wl128x FM driver.

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/Kconfig |3 +++ drivers/media/radio/Makefile |1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/media/radio/Kconfig

[RFC V8 1/7] drivers:media:radio: wl128x: fmdrv common header file

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com These are common headers used in FM submodules (FM V4L2, FM common, FM Rx,and FM TX). Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv.h | 248 1 files changed, 248

[RFC V8 4/7] drivers:media:radio: wl128x: FM driver RX sources

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This has implementation for FM RX functionality. It communicates with FM V4l2 module and FM common module Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_rx.c | 904 +

[RFC V8 5/7] drivers:media:radio: wl128x: FM driver TX sources

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com This has implementation for FM TX functionality. It communicates with FM V4l2 module and FM common module. Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com --- drivers/media/radio/wl128x/fmdrv_tx.c | 438 +

[RFC V8 0/7] FM V4L2 drivers for WL128x

2010-12-30 Thread manjunatha_halli
From: Manjunatha Halli manjunatha_ha...@ti.com Mauro and the list, This is the v8 version of the TI WL128x FM V4L2 drivers patchset. This introduces wl128x folder under the drivers/media/radio which cater to FM core on Texas Instrument's WL128x (also compatible with WL127x) WiLink chipsets.

Re: [RFC V8 1/7] drivers:media:radio: wl128x: fmdrv common header file

2010-12-30 Thread Hans Verkuil
On Thursday, December 30, 2010 12:11:41 manjunatha_ha...@ti.com wrote: From: Manjunatha Halli manjunatha_ha...@ti.com These are common headers used in FM submodules (FM V4L2, FM common, FM Rx,and FM TX). Signed-off-by: Manjunatha Halli manjunatha_ha...@ti.com ---

[PATCH 1/4] [media] bttv-input: Add a note about PV951 RC

2010-12-30 Thread Mauro Carvalho Chehab
When comparing lirc-i2c and ir-kbd-i2c/bttv-input logic, a difference was noticed. As lirc-i2c will be removed soon, store the difference on a comment inside ir-kbd-i2c, in order to preserve the knowledge we have about that remote controller. Signed-off-by: Mauro Carvalho Chehab

[PATCH 0/4] Remove lirc_i2c driver

2010-12-30 Thread Mauro Carvalho Chehab
This series remove lirc_i2c driver. The first patch just adds a note to bttv-input. The next patches add two parsers for two devices that are supported by lirc_i2c, but not by ir-kbd-i2c. The last one finally drops lirc_i2c. Mauro Carvalho Chehab (4): [media] bttv-input: Add a note about PV951

[PATCH 4/4] [media] Remove staging/lirc/lirc_i2c driver

2010-12-30 Thread Mauro Carvalho Chehab
This driver duplicates the same functionality found at ir-kbd-i2c. There were a few missing key parsers that were added by the previous patches. The only thing left on lirc_i2c driver is the IR parsing for Asus TV-Box and Creative/VisionTek BreakOut-Box. Those devices use pcf8574 chip for IR.

[PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
lirc-i2c implements a get key logic for the Adaptec Remote Controller, at address 0x6b. The only driver that seems to have an Adaptec device is ivtv: $ git grep -i adaptec drivers/media drivers/media/video/cs53l32a.c: * cs53l32a (Adaptec AVC-2010 and AVC-2410) i2c ivtv driver.

[PATCH 2/4] [media] cx88: Add RC logic for Leadtek PVR 2000

2010-12-30 Thread Mauro Carvalho Chehab
Currently, lirc-i2c has a decoding logic for Leadtek Remote Control. Move it to cx88, as we intend to remove lirc-i2c. For now, initialize LIRC remote keytable with RC_MAP_EMPTY, as we don't know its keymap yet. It would be nice to later check if is there any file on LIRC userspace with that

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Hans Verkuil
On Thursday, December 30, 2010 12:45:09 Mauro Carvalho Chehab wrote: lirc-i2c implements a get key logic for the Adaptec Remote Controller, at address 0x6b. The only driver that seems to have an Adaptec device is ivtv: $ git grep -i adaptec drivers/media drivers/media/video/cs53l32a.c: *

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
Em 30-12-2010 09:56, Hans Verkuil escreveu: On Thursday, December 30, 2010 12:45:09 Mauro Carvalho Chehab wrote: lirc-i2c implements a get key logic for the Adaptec Remote Controller, at address 0x6b. The only driver that seems to have an Adaptec device is ivtv: $ git grep -i adaptec

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Andy Walls
On Thu, 2010-12-30 at 09:45 -0200, Mauro Carvalho Chehab wrote: lirc-i2c implements a get key logic for the Adaptec Remote Controller, at address 0x6b. The only driver that seems to have an Adaptec device is ivtv: $ git grep -i adaptec drivers/media drivers/media/video/cs53l32a.c: *

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Andy Walls
On Thu, 2010-12-30 at 09:45 -0200, Mauro Carvalho Chehab wrote: As we'll remove lirc_i2c from kernel, move the getkey code to ivtv driver, and use it for AVC2410. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com diff --git a/drivers/media/video/ivtv/ivtv-i2c.c

[PATCH v2] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
From f4b19dd8ac2d15666975f262cc1bdf461d48e687 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab mche...@redhat.com Date: Thu, 30 Dec 2010 09:31:10 -0200 Subject: [PATCH] [media] ivtv: Add Adaptec Remote Controller lirc-i2c implements a get key logic for the Adaptec Remote Controller, at

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
Em 30-12-2010 10:46, Andy Walls escreveu: On Thu, 2010-12-30 at 09:45 -0200, Mauro Carvalho Chehab wrote: As we'll remove lirc_i2c from kernel, move the getkey code to ivtv driver, and use it for AVC2410. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com diff --git

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
Em 30-12-2010 10:36, Andy Walls escreveu: On Thu, 2010-12-30 at 09:45 -0200, Mauro Carvalho Chehab wrote: lirc-i2c implements a get key logic for the Adaptec Remote Controller, at address 0x6b. The only driver that seems to have an Adaptec device is ivtv: $ git grep -i adaptec drivers/media

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Mauro Carvalho Chehab
Em 30-12-2010 10:34, Hans Verkuil escreveu: On Thursday, December 30, 2010 13:09:52 Mauro Carvalho Chehab wrote: Em 30-12-2010 09:56, Hans Verkuil escreveu: On Thursday, December 30, 2010 12:45:09 Mauro Carvalho Chehab wrote: lirc-i2c implements a get key logic for the Adaptec Remote

Re: [PATCH v2] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Andy Walls
On Thu, 2010-12-30 at 11:05 -0200, Mauro Carvalho Chehab wrote: From f4b19dd8ac2d15666975f262cc1bdf461d48e687 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab mche...@redhat.com Date: Thu, 30 Dec 2010 09:31:10 -0200 Subject: [PATCH] [media] ivtv: Add Adaptec Remote Controller lirc-i2c

[PATCH 2/2] staging/lirc: Update lirc TODO files

2010-12-30 Thread Mauro Carvalho Chehab
Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com delete mode 100644 drivers/staging/lirc/TODO.lirc_i2c create mode 100644 drivers/staging/lirc/TODO.lirc_zilog diff --git a/drivers/staging/lirc/TODO.lirc_i2c b/drivers/staging/lirc/TODO.lirc_i2c deleted file mode 100644 index

[PATCH 1/2] [media] cx88: Remove the obsolete i2c_adapter.id field

2010-12-30 Thread Mauro Carvalho Chehab
Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com diff --git a/drivers/media/video/cx88/cx88-i2c.c b/drivers/media/video/cx88/cx88-i2c.c index f53836b..a1fe0ab 100644 --- a/drivers/media/video/cx88/cx88-i2c.c +++ b/drivers/media/video/cx88/cx88-i2c.c @@ -146,7 +146,6 @@ int

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Andy Walls
On Thu, 2010-12-30 at 11:29 -0200, Mauro Carvalho Chehab wrote: Em 30-12-2010 10:46, Andy Walls escreveu: On Thu, 2010-12-30 at 09:45 -0200, Mauro Carvalho Chehab wrote: As we'll remove lirc_i2c from kernel, move the getkey code to ivtv driver, and use it for AVC2410.

Re: [PATCH 3/4] [media] ivtv: Add Adaptec Remote Controller

2010-12-30 Thread Andy Walls
On Thu, 2010-12-30 at 11:30 -0200, Mauro Carvalho Chehab wrote: Em 30-12-2010 10:36, Andy Walls escreveu: Thanks for the review. Version 3 of the patch enclosed. Still one little mistake that matters, otherwise it looks good. See below... commit 8576bd14361ec75c91ddfb49cc2df389143cf06a

Can VIDIOC_INT_RESET be removed?

2010-12-30 Thread Hans Verkuil
Hi Andy, Is there still a reason to keep the VIDIOC_INT_RESET ioctl in cx18 and ivtv? I seem to remember that you told me that they are no longer needed. If so, then I'll make a patch removing this ioctl in the drivers and in v4l-utils. Regards, Hans -- Hans Verkuil - video4linux

[PATCH] [media] ivtv-i2c: Fix two wanrings

2010-12-30 Thread Mauro Carvalho Chehab
Fix two gcc warnings: drivers/media/video/ivtv/ivtv-i2c.c:170: warning: cast from pointer to integer of different size drivers/media/video/ivtv/ivtv-i2c.c:171: warning: cast from pointer to integer of different size $ gcc --version gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48) They seem bogus,

Re: [PATCH] [media] ivtv-i2c: Fix two wanrings

2010-12-30 Thread Hans Verkuil
On Thursday, December 30, 2010 16:00:41 Mauro Carvalho Chehab wrote: Fix two gcc warnings: drivers/media/video/ivtv/ivtv-i2c.c:170: warning: cast from pointer to integer of different size drivers/media/video/ivtv/ivtv-i2c.c:171: warning: cast from pointer to integer of different size $

Re: [RFC V8 1/7] drivers:media:radio: wl128x: fmdrv common header file

2010-12-30 Thread Hans Verkuil
Hi, Below I have some suggestions on how to improve some of the names in this header. On Thursday, December 30, 2010 12:11:41 manjunatha_ha...@ti.com wrote: From: Manjunatha Halli manjunatha_ha...@ti.com These are common headers used in FM submodules (FM V4L2, FM common, FM Rx,and FM TX).

Re: [PATCH] [media] ivtv-i2c: Fix two wanrings

2010-12-30 Thread Mauro Carvalho Chehab
Em 30-12-2010 13:21, Hans Verkuil escreveu: On Thursday, December 30, 2010 16:00:41 Mauro Carvalho Chehab wrote: Fix two gcc warnings: drivers/media/video/ivtv/ivtv-i2c.c:170: warning: cast from pointer to integer of different size drivers/media/video/ivtv/ivtv-i2c.c:171: warning: cast from

Re: bug? oops with mem2mem_testdev module

2010-12-30 Thread Pawel Osciak
Hi, Thanks for reporting the bug, and thanks to Sylwester for a quick response, that should fix it. I intend to change my e-mail address in one larger batch during the merge window, if vb2 patches are taken in. Best regards, Pawel Osciak -- To unsubscribe from this list: send the line unsubscribe

[PATCH -next] staging: usbvideo/vicam depends on USB

2010-12-30 Thread Randy Dunlap
[drivers/staging/usbvideo/usbvideo.ko] undefined! ERROR: usb_alloc_urb [drivers/staging/usbvideo/usbvideo.ko] undefined! Signed-off-by: Randy Dunlap randy.dun...@oracle.com --- drivers/staging/usbvideo/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20101230.orig/drivers

[PATCH -next] staging: se401 depends on USB

2010-12-30 Thread Randy Dunlap
...@oracle.com --- drivers/staging/se401/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20101230.orig/drivers/staging/se401/Kconfig +++ linux-next-20101230/drivers/staging/se401/Kconfig @@ -1,6 +1,6 @@ config USB_SE401 tristate USB SE401 Camera support (DEPRECATED

[cron job] v4l-dvb daily build: WARNINGS

2010-12-30 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Thu Dec 30 19:00:21 CET 2010 git master: 59365d136d205cc20fe666ca7f89b1c5001b0d5a git media-master: gcc version:

Re: [cron job] v4l-dvb daily build: WARNINGS

2010-12-30 Thread Hans Verkuil
Just a quick note that I made some changes to the build script so that the number of warnings on the ARM platforms has decreased dramatically. The mips architecture doesn't compile at the moment. A fix is in the Linus tree, but not yet in the for_v2.6.38 branch I'm using in this daily build. Once

[PULL] soc-camera for 2.6.38

2010-12-30 Thread Guennadi Liakhovetski
Hi Mauro Please, pull soc-camera updates for 2.6.38. Please, notice, that commit v4l: soc-camera: fix multiple simultaneous user case is already in 2.6.37, I pushed it now too to simplify the merge, git shall just recognise an identical patch, when you pull from your 2.6.37 or from Linus'

Re: [PATCH 2/3] mx3_camera: Support correctly the YUV222 and BAYER configurations of CSI

2010-12-30 Thread Guennadi Liakhovetski
On Sat, 18 Dec 2010, Guennadi Liakhovetski wrote: Alberto it would be slowly on the time to address my comments and submit updates. While at it, also, please update the subject - you probably meant YUV422 or YUV444 there, also below: Ok, I'm dropping this patch Alberto, I've applied and

[PATCH 04/15]drivers:staging:comedi:drivers:das800.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/staging/comedi/drivers/das800.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH 06/15]drivers:staging:xgifb:vb_setmode.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/staging/xgifb/vb_setmode.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH 05/15]drivers:staging:vt6655:rf.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/staging/vt6655/rf.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6655/rf.c

[PATCH 08/15]drivers:scsi:lpfc:lpfc_init.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/scsi/lpfc/lpfc_init.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/lpfc/lpfc_init.c

[PATCH 10/15]drivers:usb:gadget:langwell Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/usb/gadget/langwell_udc.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 11/15]drivers:media:video:cx18:cx23418.h Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/media/video/cx18/cx23418.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATCH 12/15]drivers:media:video:tvp7002.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/media/video/tvp7002.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/tvp7002.c

[PATCH 14/15]include:media:davinci:vpss.h Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- include/media/davinci/vpss.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/media/davinci/vpss.h

[PATCH 15/15]drivers:spi:dw_spi.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/spi/dw_spi.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/spi/dw_spi.c

[PATCH 13/15]drivers:isdn:mISDN:dsp_cmx.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/isdn/mISDN/dsp_cmx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/isdn/mISDN/dsp_cmx.c

[PATCH 09/15]drivers:usb:host Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable and also fixes another typo in a comment. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/usb/host/fhci-hcd.c |4 ++-- drivers/usb/host/fhci-tds.c |4 ++-- 2 files

[PATCH 07/15]drivers:net:wireless:iwlwifi Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/net/wireless/iwlwifi/iwl-agn-ict.c |2 +- drivers/net/wireless/iwlwifi/iwl-agn.c |4 ++--

[PATCH 01/15]arch:m68k:ifpsp060:src:fpsp.S Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- arch/m68k/ifpsp060/src/fpsp.S |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/m68k/ifpsp060/src/fpsp.S

[PATCH 02/15]drivers:spi:dw_spi.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/spi/dw_spi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/spi/dw_spi.c b/drivers/spi/dw_spi.c

[PATCH 03/15]drivers:staging:rtl8187se:r8180_hw.h Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/staging/rtl8187se/r8180_hw.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[PATVH] media, dvb, IX2505V: Remember to free allocated memory in failure path (ix2505v_attach()).

2010-12-30 Thread Jesper Juhl
Hi, We may leak the storage allocated to 'state' in drivers/media/dvb/frontends/ix2505v.c::ix2505v_attach() on error. This patch makes sure we free the allocated memory in the failure case. Signed-off-by: Jesper Juhl j...@chaosbits.net --- ix2505v.c |1 + 1 file changed, 1 insertion(+)

[PATCH] cx23885, cimax2.c: Fix case of two CAM insertion irq.

2010-12-30 Thread Igor M. Liplianin
For example boot up with two CAM inserted. Signed-off-by: Abylay Ospan aos...@netup.ru --- drivers/media/video/cx23885/cimax2.c | 24 1 files changed, 16 insertions(+), 8 deletions(-) diff --git a/drivers/media/video/cx23885/cimax2.c

[PATCH 02/18] Altera FPGA based CI driver module.

2010-12-30 Thread Igor M. Liplianin
An Altera FPGA CI module for NetUP Dual DVB-T/C RF CI card. Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/video/cx23885/Kconfig |9 + drivers/media/video/cx23885/Makefile|1 + drivers/media/video/cx23885/altera-ci.c | 834 +++

[PATCH 05/18] Initial commit to support NetUP Dual DVB-T/C CI RF card.

2010-12-30 Thread Igor M. Liplianin
The card based on cx23885 PCI-e brige. Altera FPGA for CI, multistandard demods stv0367 from STM for QAM OFDM, Xcieve xc5000 tuners and additional cx25840 for second analog input. Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/video/cx23885/Kconfig |3 +-

[PATCH 06/18] cx23885: implement tuner_bus parameter for cx23885_board structure.

2010-12-30 Thread Igor M. Liplianin
There is two external I2C buses in cx23885 chip. Currently, analog tuners supported for second I2C bus only In NetUP Dual DVB-T/C CI RF card tuners connected to first bus So, in order to support analog tuners sitting on first bus we need modifications. Signed-off-by: Igor M. Liplianin

[PATCH 07/18] cx23885: implement num_fds_portb, num_fds_portc parameters for cx23885_board structure.

2010-12-30 Thread Igor M. Liplianin
This is needed for multifrontend support. NetUP Dual DVB-T/C CI RF card has frontends connected to port B C Each frontend has two switchable cores - DVB-T DVB-C Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/video/cx23885/cx23885-cards.c |2 ++

[PATCH 10/18] cx23885: remove duplicate set interrupt mask

2010-12-30 Thread Igor M. Liplianin
Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/video/cx23885/cx23885-core.c | 10 ++ 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c index 307eaf4..3a09dd2

[PATCH 11/18] stv0367: change default value for AGC register.

2010-12-30 Thread Abylay Ospan
Signed-off-by: Abylay Ospan aos...@netup.ru --- drivers/media/dvb/frontends/stv0367.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb/frontends/stv0367.c b/drivers/media/dvb/frontends/stv0367.c index e6bee7f..9439388 100644 ---

[PATCH 12/18] stv0367: implement uncorrected blocks counter.

2010-12-30 Thread Abylay Ospan
Signed-off-by: Abylay Ospan aos...@netup.ru --- drivers/media/dvb/frontends/stv0367.c | 20 +++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/frontends/stv0367.c b/drivers/media/dvb/frontends/stv0367.c index 9439388..aaa2b44 100644 ---

[PATCH 09/18] stv0367: Fix potential divide error

2010-12-30 Thread Igor M. Liplianin
Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/dvb/frontends/stv0367.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/frontends/stv0367.c b/drivers/media/dvb/frontends/stv0367.c index 0575741..e6bee7f 100644 ---

[PATCH 08/18] cx23885: Altera FPGA CI interface reworked.

2010-12-30 Thread Abylay Ospan
It decreases I2C traffic. Signed-off-by: Abylay Ospan aos...@netup.ru Signed-off-by: Igor M. Liplianin liplia...@netup.ru --- drivers/media/video/cx23885/cx23885-dvb.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git

Re: [PATCH 01/18] Altera FPGA firmware download module.

2010-12-30 Thread Randy Dunlap
On Fri, 31 Dec 2010 08:26:31 +0300 Igor M. Liplianin wrote: It uses STAPL files and programs Altera FPGA through JTAG. Interface to JTAG must be provided from main device module, for example through cx23885 GPIO. Signed-off-by: Igor M. Liplianin liplia...@netup.ru ---

Re: [PATCH 15/15]drivers:spi:dw_spi.c Typo change diable to disable.

2010-12-30 Thread Dan Carpenter
On Thu, Dec 30, 2010 at 03:08:04PM -0800, Justin P. Mattock wrote: The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com --- drivers/spi/dw_spi.c |6 +++--- You missed one from this file:

Re: [PATCH 02/15]drivers:spi:dw_spi.c Typo change diable to disable.

2010-12-30 Thread Grant Likely
On Thu, Dec 30, 2010 at 03:07:51PM -0800, Justin P. Mattock wrote: The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattock justinmatt...@gmail.com applied, thanks. g. --- drivers/spi/dw_spi.c |2 +- 1 files

Re: [PATCH 02/15]drivers:spi:dw_spi.c Typo change diable to disable.

2010-12-30 Thread Justin P. Mattock
On 12/30/2010 10:45 PM, Grant Likely wrote: On Thu, Dec 30, 2010 at 03:07:51PM -0800, Justin P. Mattock wrote: The below patch fixes a typo diable to disable. Please let me know if this is correct or not. Signed-off-by: Justin P. Mattockjustinmatt...@gmail.com applied, thanks. g. ahh..