Re: [PATCH 04/11] mm: page_alloc: introduce alloc_contig_range()

2012-01-16 Thread Mel Gorman
On Fri, Jan 13, 2012 at 09:04:31PM +0100, Michal Nazarewicz wrote: On Thu, Dec 29, 2011 at 01:39:05PM +0100, Marek Szyprowski wrote: From: Michal Nazarewicz min...@mina86.com + /* Make sure all pages are isolated. */ + if (!ret) { + lru_add_drain_all(); +

[GIT PULL] Samsung fixes for v3.3

2012-01-16 Thread Marek Szyprowski
Hello Mauro, Please pull fixes for Samsung V4L drivers into your for_v3.3 development branch. Best regards, Marek Szyprowski Samsung Poland RD Center The following changes since commit 240ab508aa9fb7a294b0ecb563b19ead000b2463: [media] [PATCH] don't reset the delivery system on DTV_CLEAR

omap3isp: sequence number in v4l2 buffer not incremented

2012-01-16 Thread Kruno Mrak
Hello, we have an omap based intelligent camera and image sensor is connected to camera parallel interface. Image capturing via CCDC output works fine. When streaming is on and reading sequence variable, it shows always -1. Looking at kernel-source ispvideo.c, i found following if-else

Re: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Mauro Carvalho Chehab
Em 11-01-2012 09:39, Hadli, Manjunath escreveu: Hi Mauro, Can you please pull the following patch which removes some unnecessary inclusion of machine specific header files from the main driver files? This patch has undergone sufficient review already. It is just a cleanup patch

[RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig | 10 + drivers/media/radio/Makefile |1 + drivers/media/radio/radio-keene.c | 419 + 3 files changed, 430

[RFC PATCH 3/3] hid-core: ignore the Keene FM transmitter.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The Keene FM transmitter USB device has the same USB ID as the Logitech AudioHub Speaker, but it should ignore the hid. Check if the name is that of the Keene device. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/hid/hid-core.c | 10

[RFC PATCH 0/3] New driver for the Keene USB FM Transmitter

2012-01-16 Thread Hans Verkuil
Hi all, Here is a V4L2 driver for the Keene USB FM Transmitter: http://www.amazon.co.uk/Keene-Electronics-USB-FM-Transmitter/dp/B003GCHPDY It's been very useful to test V4L2 FM radio receivers. Note that the Keene FM transmitter USB device has the same USB ID as the Logitech AudioHub Speaker.

[RFC PATCH 1/3] v4l2-ctrls: fix ugly control name.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/v4l2-ctrls.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/v4l2-ctrls.c b/drivers/media/video/v4l2-ctrls.c index da1f4c2..35316f9

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Oliver Neukum
Am Montag, 16. Januar 2012, 13:29:19 schrieb Hans Verkuil: From: Hans Verkuil hans.verk...@cisco.com +MODULE_DEVICE_TABLE(usb, usb_keene_device_table); + +struct keene_device { + struct usb_device *usbdev; + struct usb_interface *intf; + struct video_device vdev; + struct

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Oliver Neukum
Am Montag, 16. Januar 2012, 13:29:19 schrieb Hans Verkuil: +/* check if the device is present and register with v4l and usb if it is */ +static int usb_keene_probe(struct usb_interface *intf, + const struct usb_device_id *id) +{ + struct keene_device

RE: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Hadli, Manjunath
Mauro, On Mon, Jan 16, 2012 at 17:27:03, Mauro Carvalho Chehab wrote: Em 11-01-2012 09:39, Hadli, Manjunath escreveu: Hi Mauro, Can you please pull the following patch which removes some unnecessary inclusion of machine specific header files from the main driver files? This

Re: [PATCH 04/11] mm: page_alloc: introduce alloc_contig_range()

2012-01-16 Thread Michal Nazarewicz
On Mon, 16 Jan 2012 10:01:10 +0100, Mel Gorman m...@csn.ul.ie wrote: On Fri, Jan 13, 2012 at 09:04:31PM +0100, Michal Nazarewicz wrote: On Thu, Dec 29, 2011 at 01:39:05PM +0100, Marek Szyprowski wrote: From: Michal Nazarewicz min...@mina86.com + /* Make sure all pages are isolated. */ +

Re: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Mauro Carvalho Chehab
Em 16-01-2012 10:45, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 17:27:03, Mauro Carvalho Chehab wrote: Em 11-01-2012 09:39, Hadli, Manjunath escreveu: Hi Mauro, Can you please pull the following patch which removes some unnecessary inclusion of machine specific header

Re: [RFC PATCH 1/3] v4l2-ctrls: fix ugly control name.

2012-01-16 Thread Oliver Neukum
Am Montag, 16. Januar 2012, 13:29:18 schrieb Hans Verkuil: From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/v4l2-ctrls.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Hans Verkuil
On Monday 16 January 2012 13:44:37 Oliver Neukum wrote: Am Montag, 16. Januar 2012, 13:29:19 schrieb Hans Verkuil: From: Hans Verkuil hans.verk...@cisco.com +MODULE_DEVICE_TABLE(usb, usb_keene_device_table); + +struct keene_device { + struct usb_device *usbdev; + struct

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Hans Verkuil
On Monday 16 January 2012 13:46:46 Oliver Neukum wrote: Am Montag, 16. Januar 2012, 13:29:19 schrieb Hans Verkuil: +/* check if the device is present and register with v4l and usb if it is */ +static int usb_keene_probe(struct usb_interface *intf, + const

Re: [RFC PATCH 1/3] v4l2-ctrls: fix ugly control name.

2012-01-16 Thread Hans Verkuil
On Monday 16 January 2012 14:00:00 Oliver Neukum wrote: Am Montag, 16. Januar 2012, 13:29:18 schrieb Hans Verkuil: From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/video/v4l2-ctrls.c |2 +- 1 files changed, 1

RE: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Hadli, Manjunath
Mauro, On Mon, Jan 16, 2012 at 18:26:25, Mauro Carvalho Chehab wrote: Em 16-01-2012 10:45, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 17:27:03, Mauro Carvalho Chehab wrote: Em 11-01-2012 09:39, Hadli, Manjunath escreveu: Hi Mauro, Can you please pull the following patch

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Oliver Neukum
Am Montag, 16. Januar 2012, 14:02:05 schrieb Hans Verkuil: +/* Set frequency (if non-0), PA, mute and turn on/off the FM transmitter. */ +static int keene_cmd_main(struct keene_device *radio, unsigned freq, bool play) +{ + unsigned short freq_send = freq ? (freq - 76 * 16000) / 800 :

[RFC PATCH 04/10] radio-gemtek: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with actual hardware (up to two cards) and the Keene USB FM Transmitter. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig| 17 +- drivers/media/radio/radio-gemtek.c | 493

[RFC PATCH 00/10] Updating ISA Radio drivers :-)

2012-01-16 Thread Hans Verkuil
Hi all, One of the things I've wanted to do for some time is to start upgrading all drivers to the latest V4L2 frameworks and ensuring that they pass the v4l2-compliance tests. So I started out with some of the oldest drivers around: the ISA radio drivers :-) Partially because they are easy to

[RFC PATCH 06/10] radio-terratec: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with v4l2-compliance, but not with actual hardware. Contact the linux-media mailinglist if you have this card! Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig | 25 +--

[RFC PATCH 07/10] radio-trust: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with v4l2-compliance, but not with actual hardware. Contact the linux-media mailinglist if you have this card! Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig |5 + drivers/media/radio/radio-trust.c |

[RFC PATCH 08/10] radio-typhoon: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with v4l2-compliance, but not with actual hardware. Contact the linux-media mailinglist if you have this card! Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig |8 +-

[RFC PATCH 03/10] radio-aztech: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with actual hardware and the Keene USB FM Transmitter. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig|6 +- drivers/media/radio/radio-aztech.c | 371 2 files

[RFC PATCH 01/10] radio-isa: add framework for ISA radio drivers.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com We have quite a few ISA radio drivers, which are all very similar. This framework makes it possible to reduce the code size of those drivers and makes it much easier to keep them up to date with the latest V4L2 API developments. Drivers rewritten to use

[RFC PATCH 09/10] radio-zoltrix: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with v4l2-compliance, but not with actual hardware. Contact the linux-media mailinglist if you have this card! Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig |8 +-

[RFC PATCH 10/10] radio/Kconfig: cleanup.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig | 23 --- 1 files changed, 0 insertions(+), 23 deletions(-) diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index

[RFC PATCH 02/10] radio-aimslab: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with actual hardware and the Keene USB FM Transmitter. Improved the volume handling delays through trial and error. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig |9 +-

[RFC PATCH 05/10] radio-rtrack2: Convert to radio-isa.

2012-01-16 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Tested with v4l2-compliance, but not with actual hardware. Contact the linux-media mailinglist if you have this card! Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/radio/Kconfig |8 +-

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Oliver Neukum
Am Montag, 16. Januar 2012, 14:03:07 schrieb Hans Verkuil: Oh, I forgot. You have no guarantee the hid driver is already loaded. This driver needs to also gracefully handle being called for a HID device. And how do I do that? Do you have a pointer to another driver for me? As you've

Re: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Mauro Carvalho Chehab
Em 16-01-2012 11:06, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 18:26:25, Mauro Carvalho Chehab wrote: Em 16-01-2012 10:45, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 17:27:03, Mauro Carvalho Chehab wrote: Em 11-01-2012 09:39, Hadli, Manjunath escreveu: Hi

[RFC PATCH] Fixup control names to use consistent capitalization

2012-01-16 Thread Hans Verkuil
Hi all, This patch fixes several control names with inconsistent capitalization and other inconsistencies (and a spelling mistake in one name as well). Kamil, Sakari, please take a look as most of the affected strings are either MPEG or Flash controls. Note that I saw a few strings as well that

Re: [PATCH 01/23] v4l: Introduce integer menu controls

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:38 Sakari Ailus wrote: Create a new control type called V4L2_CTRL_TYPE_INTEGER_MENU. Integer menu controls are just like menu controls but the menu items are 64-bit integers rather than strings. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by:

Re: [RFC PATCH] Fixup control names to use consistent capitalization

2012-01-16 Thread Sakari Ailus
Hi Hans, Thanks for the patch. On Mon, Jan 16, 2012 at 02:35:43PM +0100, Hans Verkuil wrote: Hi all, This patch fixes several control names with inconsistent capitalization and other inconsistencies (and a spelling mistake in one name as well). Kamil, Sakari, please take a look as most

Re: [PATCH 02/23] v4l: Document integer menu controls

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:39 Sakari Ailus wrote: Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent Pinchart -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message

Re: [PATCH 03/23] vivi: Add an integer menu test control

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:40 Sakari Ailus wrote: Add an integer menu test control for the vivi driver. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent Pinchart -- To unsubscribe from this list: send

Re: [PATCH 05/23] v4l: Support s_crop and g_crop through s/g_selection

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:42 Sakari Ailus wrote: Fall back to s_selection if s_crop isn't implemented by a driver. Same for g_selection / g_crop. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent

Re: [PATCH 08/23] v4l: Image source control class

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:45 Sakari Ailus wrote: Add image source control class. This control class is intended to contain low level controls which deal with control of the image capture process --- the A/D converter in image sensors, for example.

Re: [PATCH 09/23] v4l: Add DPCM compressed formats

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:46 Sakari Ailus wrote: Add three other colour orders for 10-bit to 8-bit DPCM compressed formats. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- Documentation/DocBook/media/v4l/pixfmt-srggb10.xml |2 +-

Re: [PATCH 10/23] omap3isp: Support additional in-memory compressed bayer formats

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:47 Sakari Ailus wrote: This also prevents accessing NULL pointer in csi2_try_format(). Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent Pinchart -- To unsubscribe from this

Re: [PATCH 11/23] omap3isp: Move definitions required by board code under include/media.

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:48 Sakari Ailus wrote: XCLK definitions are often required by the board code. Move them to public include file. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent Pinchart --

Re: [PATCH 12/23] omap3: add definition for CONTROL_CAMERA_PHY_CTRL

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:49 Sakari Ailus wrote: This register is available only in OMAP3630. The original patch was submitted by Vimarsh Zutshi. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards, Laurent

Re: [PATCH 13/23] omap3isp: Add lane configuration to platform data

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:50 Sakari Ailus wrote: Add lane configuration (order of clock and data lane) to platform data on both CCP2 and CSI-2. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/ispcsiphy.h | 15

RE: [RFC PATCH] Fixup control names to use consistent capitalization

2012-01-16 Thread Kamil Debski
Hi Hans, From: Hans Verkuil [mailto:hverk...@xs4all.nl] Sent: 16 January 2012 14:36 Hi all, This patch fixes several control names with inconsistent capitalization and other inconsistencies (and a spelling mistake in one name as well). Kamil, Sakari, please take a look as most of the

Re: [PATCH 14/23] omap3isp: Configure CSI-2 phy based on platform data

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:51 Sakari Ailus wrote: Configure CSI-2 phy based on platform data in the ISP driver. For that, the new V4L2_CID_IMAGE_SOURCE_PIXEL_RATE control is used. Previously the same was configured from the board code.

Re: [PATCH 16/23] media: Add link_validate op to check links to the sink pad

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:53 Sakari Ailus wrote: Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/media-entity.c | 73 - include/media/media-entity.h | 5 ++- 2 files changed, 74

Re: [PATCH 17/23] v4l: Implement v4l2_subdev_link_validate()

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:54 Sakari Ailus wrote: v4l2_subdev_link_validate() is the default op for validating a link. In V4L2 subdev context, it is used to call a pad op which performs the proper link check without much extra work. Signed-off-by:

Re: [PATCH 18/23] omap3isp: Assume media_entity_pipeline_start may fail

2012-01-16 Thread Laurent Pinchart
On Wednesday 11 January 2012 22:26:55 Sakari Ailus wrote: Since media_entity_pipeline_start() now does link validation, it may actually fail. Perform the error handling. Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com -- Regards,

Re: [PATCH 19/23] omap3isp: Default error handling for ccp2, csi2, preview and resizer

2012-01-16 Thread Laurent Pinchart
Hi Sakari, Thanks for the patch. On Wednesday 11 January 2012 22:26:56 Sakari Ailus wrote: Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- drivers/media/video/omap3isp/ispccp2.c|2 ++ drivers/media/video/omap3isp/ispcsi2.c|2 ++ drivers/media/video/omap3isp/isppreview.c

Re: [RFC PATCH] Fixup control names to use consistent capitalization

2012-01-16 Thread Hans Verkuil
On Monday 16 January 2012 15:09:06 Kamil Debski wrote: Hi Hans, From: Hans Verkuil [mailto:hverk...@xs4all.nl] Sent: 16 January 2012 14:36 Hi all, This patch fixes several control names with inconsistent capitalization and other inconsistencies (and a spelling mistake in one

cx25840: allow setting radio audio mode stereo/mono

2012-01-16 Thread Miroslav Slugeň
Signed-off-by: Miroslav Slugen thunder@gmail.com From: Miroslav Slugen thunder@gmail.com Date: Mon, 12 Dec 2011 00:19:34 +0100 Subject: [PATCH] cx25840_s_tuner should support also radio mode for setting stereo and mono. --- diff -Naurp a/drivers/media/video/cx25840/cx25840-core.c

[GIT PULL FOR v3.3] Fix inconsistent control names

2012-01-16 Thread Hans Verkuil
Hi Mauro, This one would be very nice to have for 3.3, especially for the new flash controls. Regards, Hans The following changes since commit d04ca8df70f0e1c3fe6ee2aeb1114b03a3a3de88: [media] cxd2820r: do not switch to DVB-T when DVB-C fails (2012-01-16 12:47:32 -0200) are

cx25840: rewrite g_tuner for radio support and audio mode detection

2012-01-16 Thread Miroslav Slugeň
Version 2, i moved reading from microcontroler register after is_cx2583x return. Signed-off-by: Miroslav Slugen thunder@gmail.com From: Miroslav Slugen thunder@gmail.com Date: Mon, 12 Dec 2011 00:19:34 +0100 Subject: [PATCH] cx25840_g_tuner should support also radio mode for detecting

Re: [PATCH RFCv2] add DTMB support for DVB API

2012-01-16 Thread Patrick Boettcher
On Saturday 14 January 2012 16:31:16 Antti Palosaari wrote: Version 2. I have made some changes from feedback got and what I myself found better. I will add documentation later after API issues are resolved. Thanks to Andreas, Patrick and Mauro. Cc: Patrick Boettcher

Re: [RFC PATCH 2/3] radio-keene: add a driver for the Keene FM Transmitter.

2012-01-16 Thread Alan Cox
On Mon, 16 Jan 2012 14:11:20 +0100 Oliver Neukum oneu...@suse.de wrote: Am Montag, 16. Januar 2012, 14:02:05 schrieb Hans Verkuil: +/* Set frequency (if non-0), PA, mute and turn on/off the FM transmitter. */ +static int keene_cmd_main(struct keene_device *radio, unsigned freq, bool

Strange problem, help needed

2012-01-16 Thread David Engel
Hi, I have a MythTV backend with a Hauppauge HVR-2250 (dual tuner, ATSC?QAM, PCIe) and a Ceton InfiniTV4 (quad tuner, QAM/cable card, PCIe). Over the weekend, I started intermittently seeing corrupt recordings that were painful to watch. I eventually narrowed the problem down to when both

Re: Strange problem, help needed

2012-01-16 Thread Andy Walls
On Mon, 2012-01-16 at 11:55 -0600, David Engel wrote: Hi, I have a MythTV backend with a Hauppauge HVR-2250 (dual tuner, ATSC?QAM, PCIe) and a Ceton InfiniTV4 (quad tuner, QAM/cable card, PCIe). Over the weekend, I started intermittently seeing corrupt recordings that were painful to

cron job: media_tree daily build: WARNINGS

2012-01-16 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:Mon Jan 16 19:00:22 CET 2012 git hash:d04ca8df70f0e1c3fe6ee2aeb1114b03a3a3de88 gcc version: i686-linux-gcc

[PATCH/RFC][DRAFT] V4L: Add camera auto focus controls

2012-01-16 Thread Sylwester Nawrocki
The following auto focus controls are added: - V4L2_CID_AUTO_FOCUS_START - one-shot auto focus start - V4L2_CID_AUTO_FOCUS_STOP - one-shot auto focus start - V4L2_CID_AUTO_FOCUS_STATUS - auto focus status - V4L2_CID_AUTO_FOCUS_DISTANCE - auto focus scan reange selection -

Re: [RFC 16/17] smiapp: Add driver.

2012-01-16 Thread Sylwester Nawrocki
Hi Sakari, On 01/08/2012 12:01 AM, Sakari Ailus wrote: +/* + * + * V4L2 Controls handling + * + */ + +static void __smiapp_update_exposure_limits(struct smiapp_sensor *sensor) +{ + struct v4l2_ctrl *ctrl = sensor-exposure; + int max; + + max =

Re: [git:v4l-dvb/for_v3.3] [media] V4L2 Spec: improve the G/S_INPUT/OUTPUT documentation

2012-01-16 Thread Guennadi Liakhovetski
On Mon, 16 Jan 2012, Mauro Carvalho Chehab wrote: 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] V4L2 Spec: improve the G/S_INPUT/OUTPUT documentation Author: Hans Verkuil

Re: Strange problem, help needed

2012-01-16 Thread David Engel
On Mon, Jan 16, 2012 at 01:45:24PM -0500, Andy Walls wrote: On Mon, 2012-01-16 at 11:55 -0600, David Engel wrote: Hi, I have a MythTV backend with a Hauppauge HVR-2250 (dual tuner, ATSC?QAM, PCIe) and a Ceton InfiniTV4 (quad tuner, QAM/cable card, PCIe). Over the weekend, I started

RE: [GIT PULL] davinci vpif pull request

2012-01-16 Thread Hadli, Manjunath
Mauro, On Mon, Jan 16, 2012 at 18:47:00, Mauro Carvalho Chehab wrote: Em 16-01-2012 11:06, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 18:26:25, Mauro Carvalho Chehab wrote: Em 16-01-2012 10:45, Hadli, Manjunath escreveu: Mauro, On Mon, Jan 16, 2012 at 17:27:03, Mauro

RE: [PATCH 2/2] v4l2: add new pixel formats supported on dm365

2012-01-16 Thread Hadli, Manjunath
All, On Mon, Jan 02, 2012 at 16:51:06, Laurent Pinchart wrote: Hi Sakari, On Wednesday 28 December 2011 12:16:27 Sakari Ailus wrote: On Wed, Dec 21, 2011 at 11:23:26PM +0100, Laurent Pinchart wrote: On Wednesday 21 December 2011 14:56:36 Hadli, Manjunath wrote: On Wed, Dec 21, 2011

[patch 1/2] [media] ds3000: using logical instead of bitwise

2012-01-16 Thread Dan Carpenter
The intent here was to test if the FE_HAS_LOCK was set. The current test is equivalent to if (status) { ... Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/drivers/media/dvb/frontends/ds3000.c b/drivers/media/dvb/frontends/ds3000.c index 9387770..af65d01 100644 ---

[patch 2/2] [media] ds3000: off by one in ds3000_read_snr()

2012-01-16 Thread Dan Carpenter
This is a static checker patch and I don't have the hardware to test this, so please review it carefully. The dvbs2_snr_tab[] array has 80 elements so when we cap it at 80, that's off by one. I would have assumed that the test was wrong but in the lines right before we have the same test but use