[PATCH 0/3] [media] ths8200 fixes

2014-02-07 Thread Martin Bugge
This patch series applies a few fixes for ths8200 from Cisco's internal tree. -- 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 1/3] [media] ths8200: Zero blanking level for RGB.

2014-02-07 Thread Martin Bugge
Currently only RGB444 input data is supported so set to zero. Acked-by: Lad, Prabhakar prabhakar.cse...@gmail.com Signed-off-by: Martin Bugge marbu...@cisco.com --- drivers/media/i2c/ths8200.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/i2c/ths8200.c

[PATCH 3/3] [media] ths8200: Format adjustment.

2014-02-07 Thread Martin Bugge
Closer inspection on excact transmitted format showed that we needed to add 1 on vertical sync. Acked-by: Lad, Prabhakar prabhakar.cse...@gmail.com Signed-off-by: Martin Bugge marbu...@cisco.com --- drivers/media/i2c/ths8200.c | 20 ++-- 1 file changed, 10 insertions(+), 10

[PATCH 2/3] [media] ths8200: Corrected sync polarities setting.

2014-02-07 Thread Martin Bugge
HS_IN/VS_IN was always set to positive. Acked-by: Lad, Prabhakar prabhakar.cse...@gmail.com Signed-off-by: Martin Bugge marbu...@cisco.com --- drivers/media/i2c/ths8200.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/i2c/ths8200.c b/drivers/media/i2c/ths8200.c

Re: [PATCH 07/24] xc5000: properly report i2c write failures

2014-02-07 Thread Joonyoung Shim
Hi, Sorry for response about the past post. The logic as written would *never* actually return an error condition, since the loop would run until the counter hit zero but the check was for a value less than zero. Signed-off-by: Devin Heitmueller dheitmuel...@kernellabs.com ---

Re: [PATCH RFC 26/46] drivers/base: provide an infrastructure for componentised subsystems

2014-02-07 Thread Daniel Vetter
I've chatted a bit with Hans Verkuil about this topic at fosdem and apparently both v4l and alsa have something like this already in their helper libraries. Adding more people as fyi in case they want to switch to the new driver core stuff from Russell. -Daniel On Thu, Jan 2, 2014 at 10:27 PM,

Re: [PATCH, RFC 08/30] [media] arv: fix sleep_on race

2014-02-07 Thread Hans Verkuil
On 01/17/2014 11:51 AM, Hans Verkuil wrote: On 01/02/2014 01:07 PM, Arnd Bergmann wrote: interruptible_sleep_on is racy and going away. In the arv driver that race has probably never caused problems since it would require a whole video frame to be captured before the read function has a chance

Re: [PATCH, RFC 07/30] [media] radio-cadet: avoid interruptible_sleep_on race

2014-02-07 Thread Hans Verkuil
Hi Arnd! On 01/17/2014 03:28 PM, Arnd Bergmann wrote: On Friday 17 January 2014, Hans Verkuil wrote: @@ -323,25 +324,32 @@ static ssize_t cadet_read(struct file *file, char __user *data, size_t count, lo struct cadet *dev = video_drvdata(file); unsigned char readbuf[RDS_BUFFER];

Re: [PATCH RFC 26/46] drivers/base: provide an infrastructure for componentised subsystems

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 10:04:30AM +0100, Daniel Vetter wrote: I've chatted a bit with Hans Verkuil about this topic at fosdem and apparently both v4l and alsa have something like this already in their helper libraries. Adding more people as fyi in case they want to switch to the new driver

Re: [PATCH, RFC 07/30] [media] radio-cadet: avoid interruptible_sleep_on race

2014-02-07 Thread Hans Verkuil
On 02/07/2014 10:32 AM, Hans Verkuil wrote: Hi Arnd! On 01/17/2014 03:28 PM, Arnd Bergmann wrote: On Friday 17 January 2014, Hans Verkuil wrote: @@ -323,25 +324,32 @@ static ssize_t cadet_read(struct file *file, char __user *data, size_t count, lo struct cadet *dev =

Re: [PATCH, RFC 07/30] [media] radio-cadet: avoid interruptible_sleep_on race

2014-02-07 Thread Arnd Bergmann
On Friday 07 February 2014 10:32:28 Hans Verkuil wrote: mutex_lock(dev-lock); if (dev-rdsstat == 0) cadet_start_rds(dev); - if (dev-rdsin == dev-rdsout) { + while (dev-rdsin == dev-rdsout) { if (file-f_flags O_NONBLOCK) {

Re: omap3isp device tree support

2014-02-07 Thread Enrico
On Fri, Jan 10, 2014 at 10:02 AM, Julien BERAUD julien.ber...@parrot.com wrote: Le 09/01/2014 19:14, Enrico a écrit : On Wed, Jan 8, 2014 at 12:55 PM, Julien BERAUD julien.ber...@parrot.com wrote: Le 07/01/2014 11:12, Enrico a écrit : On Mon, Jan 6, 2014 at 11:11 AM, Julien BERAUD

Re: [PATCH 27/47] v4l: Add support for DV timings ioctls on subdev nodes

2014-02-07 Thread Sakari Ailus
Hi Laurent, Thanks for the patch. On Wed, Feb 05, 2014 at 05:42:18PM +0100, Laurent Pinchart wrote: ... diff --git a/drivers/media/v4l2-core/v4l2-subdev.c b/drivers/media/v4l2-core/v4l2-subdev.c index 996c248..0ccf9c8 100644 --- a/drivers/media/v4l2-core/v4l2-subdev.c +++

Re: [PATCH, RFC 07/30] [media] radio-cadet: avoid interruptible_sleep_on race

2014-02-07 Thread Hans Verkuil
On 02/07/2014 11:17 AM, Arnd Bergmann wrote: On Friday 07 February 2014 10:32:28 Hans Verkuil wrote: mutex_lock(dev-lock); if (dev-rdsstat == 0) cadet_start_rds(dev); - if (dev-rdsin == dev-rdsout) { + while (dev-rdsin == dev-rdsout) {

Re: [PATCH RFC 26/46] drivers/base: provide an infrastructure for componentised subsystems

2014-02-07 Thread Jean-Francois Moine
On Fri, 7 Feb 2014 09:46:56 + Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Fri, Feb 07, 2014 at 10:04:30AM +0100, Daniel Vetter wrote: I've chatted a bit with Hans Verkuil about this topic at fosdem and apparently both v4l and alsa have something like this already in their

[RFC PATCH 0/7] si4713 enhancements, add miro RDS support

2014-02-07 Thread Hans Verkuil
This patch series adds some missing RDS functionality to the si4713 driver. In addition it adds back support for RDS to the radio-miropcm20 driver that was dropped somewhere around the 2.6.2x timeframe. It's been tested with a miropcm20 board, an si4713 board and a si470x based usb stick.

[RFC PATCH 1/7] v4l2-ctrls: add new RDS TX controls

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The si4713 supports several RDS features not yet implemented in the driver. This patch adds the missing RDS functionality to the list of RDS controls. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Eduardo Valentin edubez...@gmail.com ---

[RFC PATCH 3/7] si4713: add the missing RDS functionality.

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Not all the RDS features of the si4713 were supported. Add the missing bits to fully support the hardware capabilities. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Eduardo Valentin edubez...@gmail.com --- drivers/media/radio/si4713/si4713.c |

[RFC PATCH 7/7] radio-miropcm20: add RDS support.

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Once upon a time the radio-miropcm20 driver had RDS support. However, after some internal kernel changes that support was removed. Now that we have a nice RDS API I have been working on adding back this support. It has been tested with the si4713 RDS

[RFC PATCH 5/7] DocBook/media: document the new RDS RX controls

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Document the new RDS receiver controls. This will be used by the radio-miropcm20 driver. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- Documentation/DocBook/media/v4l/controls.xml | 51 1 file changed, 51

[RFC PATCH 2/7] DocBook/media: document the new RDS TX controls

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Document the new RDS features that will be supported by the si4713 driver. Signed-off-by: Hans Verkuil hans.verk...@cisco.com Cc: Eduardo Valentin edubez...@gmail.com --- Documentation/DocBook/media/v4l/controls.xml | 60 1

[RFC PATCH 6/7] v4l2-ctrls: add support for setting string controls

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Rather than always having to use a v4l2_ext_control struct to set a control value from within a driver, switch to just setting the new value. This is faster and it makes it possible to set more complex types such as a string control. Signed-off-by: Hans

[RFC PATCH 4/7] v4l2-ctrls: add RX RDS controls.

2014-02-07 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The radio-miropcm20 driver has firmware that decodes the RDS signals. So in that case the RDS data becomes available in the form of controls. Add support for these controls to the control framework, allowing the miro driver to use them. Signed-off-by:

Re: [PATCH RFC 26/46] drivers/base: provide an infrastructure for componentised subsystems

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 12:57:21PM +0100, Jean-Francois Moine wrote: I started to use your code (which works fine, thanks), and it avoids a lot of problems, especially, about probe_defer in a DT context. I was wondering if your componentised mechanism could be extended to the devices defined

Re: [PATCH 07/24] xc5000: properly report i2c write failures

2014-02-07 Thread Devin Heitmueller
I can't load firmware like error of below link. https://bugs.launchpad.net/ubuntu/+source/linux-firmware-nonfree/+bug/1263837 This error is related with this patch. This fix is right but above error is created after this fix because my device makes WatchDogTimer to 0 when load firmware.

[GIT PULL for v3.14-rc2] media fixes

2014-02-07 Thread Mauro Carvalho Chehab
Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media For a series of small fixes. Mostly driver ones. There is one core regression fix on a patch that was meant to fix some race issues on vb2, but that actually caused more harm than good. So, we're

Re: [PATCH 23/52] v4l: add new tuner types for SDR

2014-02-07 Thread Mauro Carvalho Chehab
Em Sat, 25 Jan 2014 19:10:17 +0200 Antti Palosaari cr...@iki.fi escreveu: Define tuner types V4L2_TUNER_ADC and V4L2_TUNER_RF for SDR usage. ADC is used for setting sampling rate (sampling frequency) to SDR device. Another tuner type, named as V4L2_TUNER_RF, is possible RF tuner. Is is

[PATCH v3] v4l2-subdev: Allow 32-bit compat ioctls

2014-02-07 Thread Hans Verkuil
Add support for 32-bit ioctls with v4l-subdev device nodes. Rather than keep adding new ioctls to the list in v4l2-compat-ioctl32.c, just check if the ioctl is a non-private V4L2 ioctl and if so, call the conversion code. We keep forgetting to add new ioctls, so this is a more robust solution.

[PATCH] Add Antti at the V4L2 revision list

2014-02-07 Thread Mauro Carvalho Chehab
Add SDR to V3.15 revlist, and add the credits to Antti. Signed-off-by: Mauro Carvalho Chehab m.che...@samsung.com --- Documentation/DocBook/media/v4l/v4l2.xml | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Documentation/DocBook/media/v4l/v4l2.xml

[git:media_tree/master] [media] media: rc: change 32bit NEC scancode format

2014-02-07 Thread Mauro Carvalho Chehab
This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree: Subject: [media] media: rc: change 32bit NEC scancode format Author: James Hogan james.ho...@imgtec.com Date:Fri Jan 17 10:58:50 2014 -0300 Change

[git:media_tree/master] [media] media: rc: add sysfs scancode filtering interface

2014-02-07 Thread Mauro Carvalho Chehab
This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree: Subject: [media] media: rc: add sysfs scancode filtering interface Author: James Hogan james.ho...@imgtec.com Date:Fri Jan 17 10:58:49 2014 -0300

Re: [PATCH v2 06/15] dt: binding: add binding for ImgTec IR block

2014-02-07 Thread Rob Herring
On Thu, Feb 6, 2014 at 8:41 AM, James Hogan james.ho...@imgtec.com wrote: Hi Rob, On 06/02/14 14:33, Rob Herring wrote: On Fri, Jan 17, 2014 at 7:58 AM, James Hogan james.ho...@imgtec.com wrote: +Required properties: +- compatible: Should be img,ir1 Kind of short for a name. I

Re: [PATCH v2 06/15] dt: binding: add binding for ImgTec IR block

2014-02-07 Thread Mark Rutland
Hi Rob, On Fri, Feb 07, 2014 at 02:33:27PM +, Rob Herring wrote: On Thu, Feb 6, 2014 at 8:41 AM, James Hogan james.ho...@imgtec.com wrote: Hi Rob, On 06/02/14 14:33, Rob Herring wrote: On Fri, Jan 17, 2014 at 7:58 AM, James Hogan james.ho...@imgtec.com wrote: +Required

[linuxtv-media:sdr 488/499] drivers/media/tuners/tuner-xc2028.c:1037:2: warning: enumeration value 'V4L2_TUNER_ADC' not handled in switch

2014-02-07 Thread kbuild test robot
tree: git://linuxtv.org/media_tree.git sdr head: 11532660e6f5b6b3a74a03f999d878f35d2cc668 commit: 6b200814f9eaac45ad816da459e31534b576c37b [488/499] [media] v4l: add new tuner types for SDR config: make ARCH=powerpc allmodconfig All warnings: drivers/media/tuners/tuner-xc2028.c: In

Re: [PATCH v3] v4l2-subdev: Allow 32-bit compat ioctls

2014-02-07 Thread Sakari Ailus
Hi Hans, Thanks for the update. On Fri, Feb 07, 2014 at 03:10:34PM +0100, Hans Verkuil wrote: ... diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index d67210a..84b7cce 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -162,6 +162,9 @@

[PATCH v3 06/15] dt: binding: add binding for ImgTec IR block

2014-02-07 Thread James Hogan
Add device tree binding for ImgTec Consumer Infrared block, specifically major revision 1 of the hardware. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Mauro Carvalho Chehab m.che...@samsung.com Cc: linux-media@vger.kernel.org Cc: Rob Herring robh...@kernel.org Cc: Pawel Moll

[PATCH v3 07/15] media: rc: img-ir: add base driver

2014-02-07 Thread James Hogan
Add base driver for the ImgTec Infrared decoder block. The driver is split into separate components for raw (software) decode and hardware decoder which are in following commits. Signed-off-by: James Hogan james.ho...@imgtec.com Cc: Mauro Carvalho Chehab m.che...@samsung.com Cc:

Re: [PATCH] dma-buf: avoid using IS_ERR_OR_NULL

2014-02-07 Thread Greg Kroah-Hartman
On Sat, Dec 21, 2013 at 07:42:17AM -0500, Rob Clark wrote: On Fri, Dec 20, 2013 at 7:43 PM, Colin Cross ccr...@android.com wrote: dma_buf_map_attachment and dma_buf_vmap can return NULL or ERR_PTR on a error. This encourages a common buggy pattern in callers: sgt =

[PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Jean-Francois Moine
This patch series tries to simplify the code of simple devices in case they are part of componentised subsystems, are declared in a DT, and are not using the component bin/unbind functions. Jean-Francois Moine (2): drivers/base: permit base components to omit the bind/unbind ops drivers/base:

[PATCH RFC 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-07 Thread Jean-Francois Moine
Some simple components don't need to do any specific action on bind to / unbind from a master component. This patch permits such components to omit the bind/unbind operations. Signed-off-by: Jean-Francois Moine moin...@free.fr --- drivers/base/component.c | 9 +++-- 1 file changed, 7

[PATCH v3 2/2] drivers/base: declare phandle DT nodes as components

2014-02-07 Thread Jean-Francois Moine
At system startup time, some devices depends on the availability of some other devices before starting. The infrastructure for componentised subsystems permits to handle this dependence, each driver defining its own role. This patch does an automatic creation of the lowest components in case of

[PATCH v3 0/2] *** SUBJECT HERE ***

2014-02-07 Thread Jean-Francois Moine
*** BLURB HERE *** Jean-Francois Moine (2): drivers/base: permit base components to omit the bind/unbind ops drivers/base: declare phandle DT nodes as components drivers/base/component.c | 21 +++-- drivers/base/core.c | 18 ++ include/linux/of.h |

video from USB DVB-T get damaged after some time

2014-02-07 Thread kapetr
Hello, I have this: http://linuxtv.org/wiki/index.php/ITE_IT9135 with dvb-usb-it9135-02.fw (chip version 2) on U12.04 64b with compiled newest drivers from: http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_Device_Drivers. The problem is - after some time I receive

[PATCH v3 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-07 Thread Jean-Francois Moine
Some simple components don't need to do any specific action on bind to / unbind from a master component. This patch permits such components to omit the bind/unbind operations. Signed-off-by: Jean-Francois Moine moin...@free.fr --- drivers/base/component.c | 9 +++-- 1 file changed, 7

Re: [PATCH v3 0/2] *** SUBJECT HERE ***

2014-02-07 Thread Greg Kroah-Hartman
On Fri, Feb 07, 2014 at 06:09:46PM +0100, Jean-Francois Moine wrote: *** BLURB HERE *** Subject and BLURB forgotten? -- 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

Re: [PATCH] dma-buf: avoid using IS_ERR_OR_NULL

2014-02-07 Thread Colin Cross
On Fri, Feb 7, 2014 at 8:43 AM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: On Sat, Dec 21, 2013 at 07:42:17AM -0500, Rob Clark wrote: On Fri, Dec 20, 2013 at 7:43 PM, Colin Cross ccr...@android.com wrote: dma_buf_map_attachment and dma_buf_vmap can return NULL or ERR_PTR on a

Re: [PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 06:11:08PM +0100, Jean-Francois Moine wrote: This patch series tries to simplify the code of simple devices in case they are part of componentised subsystems, are declared in a DT, and are not using the component bin/unbind functions. I wonder - I said earlier today

Re: [PATCH RFC 2/2] drivers/base: declare phandle DT nodes as components

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 05:53:27PM +0100, Jean-Francois Moine wrote: At system startup time, some devices depends on the availability of some other devices before starting. The infrastructure for componentised subsystems permits to handle this dependence, each driver defining its own role.

[PATCH] bttv: Add support for Kworld V-Stream Xpert TV PVR878

2014-02-07 Thread GEORGE
From 27c5541a93bee007d41a70b393c97ea19c62ace2 Mon Sep 17 00:00:00 2001 From: POJAR GEORGE geoubu...@gmail.com Date: Fri, 7 Feb 2014 19:34:41 +0200 Subject: [PATCH] bttv: Add support for Kworld V-Stream Xpert TV PVR878 Signed-off-by: POJAR GEORGE geoubu...@gmail.com ---

[PATCH RFC 2/2] drivers/base: declare phandle DT nodes as components

2014-02-07 Thread Jean-Francois Moine
At system startup time, some devices depends on the availability of some other devices before starting. The infrastructure for componentised subsystems permits to handle this dependence, each driver defining its own role. This patch does an automatic creation of the lowest components in case of

Re: [PATCH] bttv: Add support for Kworld V-Stream Xpert TV PVR878

2014-02-07 Thread GEORGE
On 07.02.2014 19:56, GEORGE wrote: From 27c5541a93bee007d41a70b393c97ea19c62ace2 Mon Sep 17 00:00:00 2001 From: POJAR GEORGE geoubu...@gmail.com Date: Fri, 7 Feb 2014 19:34:41 +0200 Subject: [PATCH] bttv: Add support for Kworld V-Stream Xpert TV PVR878 Signed-off-by: POJAR GEORGE

Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread The Bit Pit
Last May I started writing a driver for a KWorld UB435Q Version 3 tuner. I was able to make the kernel recognize the device, light it's LED, and try to enable the decoder and tuner. I was unable to locate any information for the tda18272 tuner chip until last week. I received an email at

Re: Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread Steven Toth
On Fri, Feb 7, 2014 at 1:23 PM, The Bit Pit thebit...@earthlink.net wrote: Last May I started writing a driver for a KWorld UB435Q Version 3 tuner. I was able to make the kernel recognize the device, light it's LED, and try to enable the decoder and tuner. Slightly related I added support

Re: [PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Jean-Francois Moine
On Fri, 7 Feb 2014 17:33:26 + Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Fri, Feb 07, 2014 at 06:11:08PM +0100, Jean-Francois Moine wrote: This patch series tries to simplify the code of simple devices in case they are part of componentised subsystems, are declared in a

Re: [PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 07:42:04PM +0100, Jean-Francois Moine wrote: On Fri, 7 Feb 2014 17:33:26 + Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Fri, Feb 07, 2014 at 06:11:08PM +0100, Jean-Francois Moine wrote: This patch series tries to simplify the code of simple devices

Re: [PATCH] dma-buf: avoid using IS_ERR_OR_NULL

2014-02-07 Thread Greg Kroah-Hartman
On Fri, Feb 07, 2014 at 09:22:37AM -0800, Colin Cross wrote: On Fri, Feb 7, 2014 at 8:43 AM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: On Sat, Dec 21, 2013 at 07:42:17AM -0500, Rob Clark wrote: On Fri, Dec 20, 2013 at 7:43 PM, Colin Cross ccr...@android.com wrote:

Re: Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread The Bit Pit
Thanks steve, Found it. Its the same files I found at a different place. I don't understand the way to do things. Last time I simply edited the kernel tree and supplied patches to get my changes in. The source for tda18272 is not in the kernel tree I 'git' following the instructions at

Re: [PATCH RFC 1/2] drivers/base: permit base components to omit the bind/unbind ops

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 04:55:00PM +0100, Jean-Francois Moine wrote: Some simple components don't need to do any specific action on bind to / unbind from a master component. This patch permits such components to omit the bind/unbind operations. Signed-off-by: Jean-Francois Moine

Re: Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread Manu Abraham
On Sat, Feb 8, 2014 at 12:09 AM, Steven Toth st...@kernellabs.com wrote: On Fri, Feb 7, 2014 at 1:23 PM, The Bit Pit thebit...@earthlink.net wrote: Last May I started writing a driver for a KWorld UB435Q Version 3 tuner. I was able to make the kernel recognize the device, light it's LED, and

Re: [GIT PULL for v3.14-rc2] media fixes

2014-02-07 Thread Linus Torvalds
On Fri, Feb 7, 2014 at 5:57 AM, Mauro Carvalho Chehab m.che...@samsung.com wrote: git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media for you to fetch changes up to 57f0547fbc1e925f5e58c76f311a6632c3f37740: Grr. You missed the branch name. I can see from the SHA1 (and

Re: [PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 06:11:08PM +0100, Jean-Francois Moine wrote: This patch series tries to simplify the code of simple devices in case they are part of componentised subsystems, are declared in a DT, and are not using the component bin/unbind functions. Here's my changes to the TDA998x

Re: Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread Steven Toth
If you need, I can push the 7231 tree up as well for upstream merge. That would be great Manu! Yes please. -- Steven Toth - Kernel Labs http://www.kernellabs.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] [media] stb0899: Fix DVB-S2 support for TechniSat SkyStar 2 HD CI USB ID 14f7:0002

2014-02-07 Thread Manu Abraham
On Sat, Feb 8, 2014 at 1:19 AM, David Jedelsky david.jedel...@gmail.com wrote: That changes I2C functionality from STOP + START to repeated START. Current functionality looks also very weird, as there is 5 messages sent, all with STOP condition. I am not surprised if actually bug is still in

Kedves e-mailt felhasználó;

2014-02-07 Thread WEBMAIL UPDATE
Kedves e-mailt felhasználó; Túllépte a tároló doboz, hogy a 23432 Webszolgáltatásról /, és akkor lesz probléma mikor elküldés és -hoz kap elektronikus levél, ellenőriz újra. Kattintva frissítenie kell a az alábbi linkre és adja meg a fiók információk Kérjük, kattintson az alábbi hivatkozásra,

Re: Driver for KWorld UB435Q Version 3 (ATSC) USB id: 1b80:e34c

2014-02-07 Thread Steven Toth
Thanks steve, You are very welcome. Found it. Its the same files I found at a different place. I don't understand the way to do things. Last time I simply edited the kernel tree and supplied patches to get my changes in. The source for tda18272 is not in the kernel tree I 'git'

[PATCH] media: soc-camera: support deferred probing of clients and OF cameras

2014-02-07 Thread Bryan Wu
From: Guennadi Liakhovetski g.liakhovet...@gmx.de Currently soc-camera doesn't work with independently registered I2C client devices, it has to register them itself. This patch adds support for such configurations, in which case client drivers have to request deferred probing until their host

Re: [PATCH] [media] stb0899: Fix DVB-S2 support for TechniSat SkyStar 2 HD CI USB ID 14f7:0002

2014-02-07 Thread Antti Palosaari
On 07.02.2014 22:54, Manu Abraham wrote: On Sat, Feb 8, 2014 at 1:19 AM, David Jedelsky david.jedel...@gmail.com wrote: That changes I2C functionality from STOP + START to repeated START. Current functionality looks also very weird, as there is 5 messages sent, all with STOP condition. I am not

Re: [PATCH] [media] stb0899: Fix DVB-S2 support for TechniSat SkyStar 2 HD CI USB ID 14f7:0002

2014-02-07 Thread Manu Abraham
On Sat, Feb 8, 2014 at 2:41 AM, Antti Palosaari cr...@iki.fi wrote: On 07.02.2014 22:54, Manu Abraham wrote: On Sat, Feb 8, 2014 at 1:19 AM, David Jedelsky david.jedel...@gmail.com wrote: That changes I2C functionality from STOP + START to repeated START. Current functionality looks also

Re: [PATCH v2 06/15] dt: binding: add binding for ImgTec IR block

2014-02-07 Thread Rob Herring
On Fri, Feb 7, 2014 at 8:50 AM, Mark Rutland mark.rutl...@arm.com wrote: Hi Rob, On Fri, Feb 07, 2014 at 02:33:27PM +, Rob Herring wrote: On Thu, Feb 6, 2014 at 8:41 AM, James Hogan james.ho...@imgtec.com wrote: Hi Rob, On 06/02/14 14:33, Rob Herring wrote: On Fri, Jan 17, 2014 at

[PATCH v4.2 4/4] v4l: Document timestamp buffer flag behaviour

2014-02-07 Thread Sakari Ailus
Timestamp buffer flags are constant at the moment. Document them so that 1) they're always valid and 2) not changed by the drivers. This leaves room to extend the functionality later on if needed. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- Documentation/DocBook/media/v4l/io.xml |8

[PATCH v4.2 3/4] v4l: Add timestamp source flags, mask and document them

2014-02-07 Thread Sakari Ailus
Some devices do not produce timestamps that correspond to the end of the frame. The user space should be informed on the matter. This patch achieves that by adding buffer flags (and a mask) for timestamp sources since more possible timestamping points are expected than just two. A three-bit mask

Re: [linuxtv-media:sdr 488/499] drivers/media/tuners/tuner-xc2028.c:1037:2: warning: enumeration value 'V4L2_TUNER_ADC' not handled in switch

2014-02-07 Thread Antti Palosaari
Moikka That is already fixed. I will pull next set of SDR patches next week. https://patchwork.linuxtv.org/patch/21887/ regards Antti On 07.02.2014 16:52, kbuild test robot wrote: tree: git://linuxtv.org/media_tree.git sdr head: 11532660e6f5b6b3a74a03f999d878f35d2cc668 commit:

Re: video from USB DVB-T get damaged after some time

2014-02-07 Thread Antti Palosaari
Moikka On 07.02.2014 18:47, kap...@mizera.cz wrote: Hello, I have this: http://linuxtv.org/wiki/index.php/ITE_IT9135 with dvb-usb-it9135-02.fw (chip version 2) on U12.04 64b with compiled newest drivers from:

Re: [PATCH RFC 0/2] drivers/base: simplify simple DT-based components

2014-02-07 Thread Russell King - ARM Linux
On Fri, Feb 07, 2014 at 06:59:11PM +, Russell King - ARM Linux wrote: Sorry. Deferred probe does work, it's been tested with imx-drm, not only from the master component but also the sub-components. There's no problem here. Here's the proof that it also works with the Cubox, and armada

cron job: media_tree daily build: ERRORS

2014-02-07 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 Feb 8 04:00:28 CET 2014 git branch: test git hash: 37e59f876bc710d67a30b660826a5e83e07101ce gcc

[PATCH] saa7134: Add support for Snazio TvPVR PRO

2014-02-07 Thread GEORGE
From: POJAR GEORGE geoubuntu at gmail.com Date: Fri, 7 Feb 2014 21:34:41 +0200 Subject: [PATCH] saa7134: Add support for Snazio TvPVR PRO Signed-off-by: POJAR GEORGE geoubuntu at gmail.com --- diff -ruN a/drivers/media/pci/saa7134/saa7134-cards.c b/drivers/media/pci/saa7134/saa7134-cards.c ---