[PATCH 7/15] media: pci: cx23885: don't export static symbol

2015-03-11 Thread Julia Lawall
From: Julia Lawall julia.law...@lip6.fr The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // smpl @r@ type T; identifier f; @@ static T f (...) { ... } @@ identifier r.f; declarer name EXPORT_SYMBOL; @@ -EXPORT_SYMBOL(f); // /smpl Signed-off-by: Julia

[PATCH 0/15] don't export static symbol

2015-03-11 Thread Julia Lawall
These patches remove EXPORT_SYMBOL or EXPORT_SYMBOL_GPL declarations on static functions. This was done using the following semantic patch: (http://coccinelle.lip6.fr/) // smpl @r@ type T; identifier f; @@ static T f (...) { ... } @@ identifier r.f; declarer name EXPORT_SYMBOL; @@

Re: [PATCH] Add framescaling support to stk1160

2015-03-11 Thread Ezequiel Garcia
Hi Michael, Dale, On 03/10/2015 12:26 AM, Ezequiel Garcia wrote: Dale, Don't forget to Cc the media mailing list. See below. If you are OK with it, I'll rework this patch (mostly cleaning the style) and then post it back so everyone can comment. BTW, my datasheet doesn't have the DMCTRL

Re: [PATCH] Add framescaling support to stk1160

2015-03-11 Thread Ezequiel Garcia
OK, great then. Don't forget to keep everyone Cced. On 03/11/2015 01:37 PM, Dale Hamel wrote: That sounds good to me :) On Wednesday, March 11, 2015, Ezequiel Garcia ezequ...@vanguardiasur.com.ar mailto:ezequ...@vanguardiasur.com.ar wrote: Hi Michael, Dale, On 03/10/2015

[PATCH] v4l2-mem2mem: no need to initialize b in v4l2_m2m_next_buf and v4l2_m2m_buf_remove

2015-03-11 Thread Philipp Zabel
The first time b is used, it is assigned to the first element of the rdy_queue list. There is no need to set it to NULL before. Signed-off-by: Philipp Zabel p.za...@pengutronix.de --- drivers/media/v4l2-core/v4l2-mem2mem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Laurent Pinchart
Hi Prabhakar, On Wednesday 11 March 2015 19:40:13 Lad, Prabhakar wrote: On Wed, Mar 11, 2015 at 6:22 PM, Laurent Pinchart wrote: On Tuesday 10 March 2015 03:35:57 Sakari Ailus wrote: On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: ... +static struct

Loan of any Amount

2015-03-11 Thread Loan Financiers worldwid
Do you need loan to pay off bills or start up business? --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to

[GIT PULL FOR v4.1] Xilinx video pipeline drivers

2015-03-11 Thread Laurent Pinchart
Hi Mauro, The following changes since commit ae3da40179c66001afad608f972bdb57d50d1e66: v4l2-subdev: remove enum_framesizes/intervals (2015-03-06 10:01:44 +0100) are available in the git repository at: git://linuxtv.org/pinchartl/media.git xilinx for you to fetch changes up to

Re: [PATCH] DocBook v4l: update bytesperline handling

2015-03-11 Thread Laurent Pinchart
Hi Hans, Thank you for the patch. On Wednesday 11 March 2015 13:00:45 Hans Verkuil wrote: The documentation says that the bytesperline field in v4l2_pix_format refers to the largest plane in the case of planar formats (i.e. multiple planes stores in a single buffer). For almost all planar

Re: [PATCH 1/3] smiapp: Clean up smiapp_get_pdata()

2015-03-11 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Tuesday 10 March 2015 03:18:00 Sakari Ailus wrote: Don't set rval when it's not used (the function returns a pointer to struct smiapp_platform_data). Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Acked-by: Laurent Pinchart

Re: [PATCH] v4l: mt9p031: Convert to the gpiod API

2015-03-11 Thread Lad, Prabhakar
Hi Laurent, On Wed, Mar 11, 2015 at 6:29 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: Hi Prabhakar, On Tuesday 10 March 2015 18:29:22 Lad, Prabhakar wrote: On Sun, Mar 8, 2015 at 1:40 PM, Laurent Pinchart wrote: This simplifies platform data and DT integration.

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Laurent Pinchart
Hi Sakari, On Wednesday 11 March 2015 13:04:43 Sakari Ailus wrote: On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: From: Benoit Parrot bpar...@ti.com this patch adds support for omnivision's ov2659 sensor, the driver supports following features: 1: Asynchronous probing

Re: [PATCH 2/3] smiapp: Read link-frequencies property from the endpoint node

2015-03-11 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Tuesday 10 March 2015 03:18:01 Sakari Ailus wrote: The documentation stated that the link-frequencies property belongs to the endpoint node, not to the device's of_node. Fix this. There are no DT board descriptions using the driver yet, so a fix in the

Re: [PATCH] v4l: mt9p031: Convert to the gpiod API

2015-03-11 Thread Laurent Pinchart
Hi Prabhakar, On Tuesday 10 March 2015 18:29:22 Lad, Prabhakar wrote: On Sun, Mar 8, 2015 at 1:40 PM, Laurent Pinchart wrote: This simplifies platform data and DT integration. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com --- drivers/media/i2c/mt9p031.c | 31

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Lad, Prabhakar
Hi Laurent, Thanks for the review. On Wed, Mar 11, 2015 at 6:22 PM, Laurent Pinchart laurent.pinch...@ideasonboard.com wrote: On Tuesday 10 March 2015 03:35:57 Sakari Ailus wrote: On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: ... +static struct ov2659_platform_data *

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Laurent Pinchart
On Tuesday 10 March 2015 03:35:57 Sakari Ailus wrote: On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: ... +static struct ov2659_platform_data * +ov2659_get_pdata(struct i2c_client *client) +{ + struct ov2659_platform_data *pdata; + struct device_node *endpoint; +

Re: [PATCH] DocBook v4l: update bytesperline handling

2015-03-11 Thread Sakari Ailus
Hi Hans, On Wed, Mar 11, 2015 at 01:00:45PM +0100, Hans Verkuil wrote: The documentation says that the bytesperline field in v4l2_pix_format refers to the largest plane in the case of planar formats (i.e. multiple planes stores in a single buffer). For almost all planar formats the first

Re: [PATCH 2/3] smiapp: Read link-frequencies property from the endpoint node

2015-03-11 Thread Lad, Prabhakar
On Wed, Mar 11, 2015 at 10:25 PM, Lad, Prabhakar prabhakar.cse...@gmail.com wrote: Hi Sakari, Thanks for the patch. On Tue, Mar 10, 2015 at 1:18 AM, Sakari Ailus sakari.ai...@iki.fi wrote: The documentation stated that the link-frequencies property belongs to the endpoint node, not to the

Re: [PATCH 1/3] smiapp: Clean up smiapp_get_pdata()

2015-03-11 Thread Lad, Prabhakar
On Wed, Mar 11, 2015 at 10:24 PM, Lad, Prabhakar prabhakar.cse...@gmail.com wrote: Hi Sakari, Thanks for the patch. On Tue, Mar 10, 2015 at 1:18 AM, Sakari Ailus sakari.ai...@iki.fi wrote: Don't set rval when it's not used (the function returns a pointer to struct smiapp_platform_data).

Re: [PATCH 3/3] v4l: of: Add link-frequencies array to struct v4l2_of_endpoint

2015-03-11 Thread Lad, Prabhakar
Hi Sakari, Thanks for the patch. On Tue, Mar 10, 2015 at 1:18 AM, Sakari Ailus sakari.ai...@iki.fi wrote: Parse and read the link-frequencies property in v4l2_of_parse_endpoint(). The property is an u64 array of undefined length, thus the memory allocation may fail, leading -

Re: [PATCH 2/3] smiapp: Read link-frequencies property from the endpoint node

2015-03-11 Thread Lad, Prabhakar
Hi Sakari, Thanks for the patch. On Tue, Mar 10, 2015 at 1:18 AM, Sakari Ailus sakari.ai...@iki.fi wrote: The documentation stated that the link-frequencies property belongs to the endpoint node, not to the device's of_node. Fix this. There are no DT board descriptions using the driver yet,

[PATCHv2 21/21] marvell-ccic: drop support for PIX_FMT_422P

2015-03-11 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com I cannot get this format to work, the colors keep coming out wrong. Since this has never worked I just drop support for this. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/platform/marvell-ccic/mcam-core.c | 19 ---

[PATCHv2 20/21] marvell-ccic: drop bayer format

2015-03-11 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This format has clearly never been tested. This driver never programmed the chip for this format and instead just reports that it is an unknown format. Drop it from the list of formats. Signed-off-by: Hans Verkuil hans.verk...@cisco.com ---

[PATCHv2 00/21] marvell-ccic: drop and fix formats

2015-03-11 Thread Hans Verkuil
This v2 patch series replaces patch 18 from the first series. After some more testing I realized that the 422P format produced wrong colors and I couldn't get it to work. Since it never worked and nobody complained about it (and it is a fairly obscure format as well) I've dropped it. I also

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Sakari Ailus
Hi Prabhakar, On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: From: Benoit Parrot bpar...@ti.com this patch adds support for omnivision's ov2659 sensor, the driver supports following features: 1: Asynchronous probing 2: DT support 3: Media controller support

RE: [RFC v2 2/7] media: rc: Add cec protocol handling

2015-03-11 Thread Kamil Debski
Hi Mauro, I have some more comments/questions below. From: Mauro Carvalho Chehab [mailto:mche...@osg.samsung.com] Sent: Sunday, March 08, 2015 3:21 PM Em Thu, 22 Jan 2015 17:04:34 +0100 Kamil Debski k.deb...@samsung.com escreveu: (c/c linux-input ML) Add cec protocol handling the RC

Re: [GIT PULL v2] of: Add of-graph helpers to loop over endpoints and find ports by id

2015-03-11 Thread Philipp Zabel
Hi Rob, Am Dienstag, den 10.03.2015, 14:05 -0500 schrieb Rob Herring: I've only been copied on this latest pull request and a version from March of last year which Grant nak'ed. This series did not go to devicetree list either. I'll take a look at the series. My bad, I should have copied

[PATCHv2 18/21] marvell-ccic: fix Y'CbCr ordering

2015-03-11 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Various formats had their byte ordering implemented incorrectly, and the V4L2_PIX_FMT_UYVY is actually impossible to create, instead you get V4L2_PIX_FMT_YVYU. This was working before commit ad6ac452227b7cb93ac79beec092850d178740b1 (add new formats

[PATCHv2 19/21] marvell-ccic: add XRGB444 and fix (X)RGB444 colors

2015-03-11 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com After testing I discovered that the color ordering for the RGB444 format was wrong. This is now fixed. In addition support is added for the XRGB444 format, which is identical to RGB444, but makes it explicit that there is no alpha, as is the case here.

[PATCH] DocBook media: fix section IDs

2015-03-11 Thread Hans Verkuil
The colorspace section IDs were assigned to the title instead of to the section. Some links failed because of that. Signed-off-by: Hans Verkuil hans.verk...@cisco.com diff --git a/Documentation/DocBook/media/v4l/pixfmt.xml b/Documentation/DocBook/media/v4l/pixfmt.xml index 13540fa..1759beb

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Lad, Prabhakar
Hi Sakari, Thanks for the review. On Wed, Mar 11, 2015 at 11:04 AM, Sakari Ailus sakari.ai...@iki.fi wrote: Hi Prabhakar, On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: From: Benoit Parrot bpar...@ti.com this patch adds support for omnivision's ov2659 sensor, the driver

[PATCH] DocBook v4l: update bytesperline handling

2015-03-11 Thread Hans Verkuil
The documentation says that the bytesperline field in v4l2_pix_format refers to the largest plane in the case of planar formats (i.e. multiple planes stores in a single buffer). For almost all planar formats the first plane is also the largest (or equal) plane, except for two formats:

Re: [PATCH 1/3] smiapp: Clean up smiapp_get_pdata()

2015-03-11 Thread Lad, Prabhakar
Hi Sakari, Thanks for the patch. On Tue, Mar 10, 2015 at 1:18 AM, Sakari Ailus sakari.ai...@iki.fi wrote: Don't set rval when it's not used (the function returns a pointer to struct smiapp_platform_data). Signed-off-by: Sakari Ailus sakari.ai...@iki.fi Tested-by: Lad, Prabhakar

Re: [PATCH v4] media: i2c: add support for omnivision's ov2659 sensor

2015-03-11 Thread Sakari Ailus
Hi Laurent, On Wed, Mar 11, 2015 at 08:09:11PM +0200, Laurent Pinchart wrote: Hi Sakari, On Wednesday 11 March 2015 13:04:43 Sakari Ailus wrote: On Sun, Mar 08, 2015 at 11:33:27AM +, Lad Prabhakar wrote: From: Benoit Parrot bpar...@ti.com this patch adds support for

Re: [RFC 06/18] omap3isp: Refactor device configuration structs for Device Tree

2015-03-11 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Saturday 07 March 2015 23:41:03 Sakari Ailus wrote: Make omap3isp configuration data structures more suitable for consumption by the DT by separating the I2C bus information of all the sub-devices in a group and the ISP bus information from each other.

Re: [RFC 14/18] dt: bindings: Add bindings for omap3isp

2015-03-11 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Saturday 07 March 2015 23:41:11 Sakari Ailus wrote: Signed-off-by: Sakari Ailus sakari.ai...@iki.fi --- .../devicetree/bindings/media/ti,omap3isp.txt | 64 + MAINTAINERS|1 + 2 files

Re: [RFC 15/18] omap3isp: Add support for the Device Tree

2015-03-11 Thread Laurent Pinchart
Hi Sakari, Thank you for the patch. On Saturday 07 March 2015 23:41:12 Sakari Ailus wrote: Add the ISP device to omap3 DT include file and add support to the driver to use it. Also obtain information on the external entities and the ISP configuration related to them through the Device Tree

cron job: media_tree daily build: WARNINGS

2015-03-11 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: Thu Mar 12 04:00:17 CET 2015 git branch: test git hash: 3d945be05ac1e806af075e9315bc1b3409adae2b gcc

Re: [RFC v2 2/7] media: rc: Add cec protocol handling

2015-03-11 Thread Mauro Carvalho Chehab
Em Wed, 11 Mar 2015 12:24:53 +0100 Kamil Debski k.deb...@samsung.com escreveu: Hi Mauro, I have some more comments/questions below. From: Mauro Carvalho Chehab [mailto:mche...@osg.samsung.com] Sent: Sunday, March 08, 2015 3:21 PM Em Thu, 22 Jan 2015 17:04:34 +0100 Kamil Debski

Re: Aptina MT9V024

2015-03-11 Thread Guennadi Liakhovetski
Hi, On Wed, 11 Mar 2015, Ayhan KÃ~\Ã~GÃ~\KMANÄ°SA wrote: Hi Guennadi, My sensor Color filter array is RGB Bayer. Can i get image values and save in any image format using v4l2? The kernel v4l2 doesn't do any pixel format conversions. I'm not sure, but check libv4l, it probably supports