Re: [PATCH 2/2] [RFC v2 with seqcount] reservation: add suppport for read-only access using rcu

2014-04-14 Thread Maarten Lankhorst
op 11-04-14 21:30, Thomas Hellstrom schreef: Hi! On 04/11/2014 08:09 PM, Maarten Lankhorst wrote: op 11-04-14 12:11, Thomas Hellstrom schreef: On 04/11/2014 11:24 AM, Maarten Lankhorst wrote: op 11-04-14 10:38, Thomas Hellstrom schreef: Hi, Maarten. Here I believe we encounter a lot of

Re: [PATCH 2/2] [RFC v2 with seqcount] reservation: add suppport for read-only access using rcu

2014-04-14 Thread Maarten Lankhorst
op 11-04-14 21:35, Thomas Hellstrom schreef: On 04/11/2014 08:09 PM, Maarten Lankhorst wrote: op 11-04-14 12:11, Thomas Hellstrom schreef: On 04/11/2014 11:24 AM, Maarten Lankhorst wrote: op 11-04-14 10:38, Thomas Hellstrom schreef: Hi, Maarten. Here I believe we encounter a lot of locking

Re: [PATCH 2/2] [RFC v2 with seqcount] reservation: add suppport for read-only access using rcu

2014-04-14 Thread Thomas Hellstrom
On 04/14/2014 09:42 AM, Maarten Lankhorst wrote: op 11-04-14 21:35, Thomas Hellstrom schreef: On 04/11/2014 08:09 PM, Maarten Lankhorst wrote: op 11-04-14 12:11, Thomas Hellstrom schreef: On 04/11/2014 11:24 AM, Maarten Lankhorst wrote: op 11-04-14 10:38, Thomas Hellstrom schreef: Hi,

[PATCH v2 03/21] smiapp: Fix determining the need for 8-bit read access

2014-04-14 Thread Sakari Ailus
8-bit reads are needed in some cases; however the condition used was wrong. Regular access (register width) was used if: len == SMIAPP_REG_8BIT !only8 This causes 8-bit read access to be used always. The operator should be || instead: regular access can be used for 8-bit reads OR if

[PATCH v2 09/21] smiapp: Use %u for printing u32 value

2014-04-14 Thread Sakari Ailus
Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/i2c/smiapp/smiapp-core.c b/drivers/media/i2c/smiapp/smiapp-core.c index 02041cc..3af8df8 100644 ---

[PATCH v2 04/21] smiapp: Add a macro for constructing 8-bit quirk registers

2014-04-14 Thread Sakari Ailus
Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-quirk.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/media/i2c/smiapp/smiapp-quirk.h b/drivers/media/i2c/smiapp/smiapp-quirk.h index 4f65c4e..96a253e 100644 ---

[PATCH v2 08/21] smiapp: Make PLL (quirk) flags a function

2014-04-14 Thread Sakari Ailus
This is more flexible. Quirk flags may be affected by configuration. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-core.c | 4 ++-- drivers/media/i2c/smiapp/smiapp-quirk.c | 7 ++- drivers/media/i2c/smiapp/smiapp-quirk.h | 2 +- 3 files

[PATCH v2 00/12] smiapp and smiapp-pll quirk improvements, fixes

2014-04-14 Thread Sakari Ailus
Hi folks, This is the second version of the smiapp and smiapp-pll quirk improvement patchset. The first version can be found here: URL:http://www.spinics.net/lists/linux-media/msg75538.html Changes since v1: - Fix a

[PATCH v2 16/21] smiapp-pll: Add quirk for op clk divisor == bits per pixel / 2

2014-04-14 Thread Sakari Ailus
For some sensors in some configurations the effective value of op clk div is bits per pixel divided by two. The output clock is correctly calculated whereas some of the rest of the clock tree uses higher clocks than calculated. This also limits the bpp to even values if the number of lanes is

[PATCH v2 13/21] smiapp-pll: Use 64-bit types limits

2014-04-14 Thread Sakari Ailus
Limits may exceed the value range of 32-bit unsigned integers. Thus use 64 bits for all of them. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 72 +++--- drivers/media/i2c/smiapp-pll.h | 20 ++-- 2 files

[PATCH v2 01/21] smiapp: Remove unused quirk register functionality

2014-04-14 Thread Sakari Ailus
The quirk registers mechanism which allows register to have a static read access value from the sensor specific quirks, is not used. Remove it. It is to be replaced by a more generic register diversion quirk soon. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com ---

[PATCH v2 06/21] smiapp: Make PLL flags separate from regular quirk flags

2014-04-14 Thread Sakari Ailus
It doesn't make sense to just copy the information to the PLL flags. Add a new fields for the quirks to contain the PLL flags. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-core.c | 5 ++--- drivers/media/i2c/smiapp/smiapp-quirk.c | 2 +-

[PATCH v2 17/21] smiapp-pll: Add pixel rate in pixel array as output parameters

2014-04-14 Thread Sakari Ailus
The actual pixel array pixel rate may be something else than vt_pix_clk_freq on some implementations. Add a new field which contains the corrected value. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 1 + drivers/media/i2c/smiapp-pll.h | 1 + 2

[PATCH v2 14/21] smiapp-pll: Add support for odd pre-pll divisors

2014-04-14 Thread Sakari Ailus
Some sensors support odd pre-pll divisor. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 39 ++- drivers/media/i2c/smiapp-pll.h | 2 ++ 2 files changed, 28 insertions(+), 13 deletions(-) diff --git

[PATCH v2 07/21] smiapp: Make PLL flags unsigned long

2014-04-14 Thread Sakari Ailus
No reason to keep this u8, really. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/i2c/smiapp-pll.h b/drivers/media/i2c/smiapp-pll.h index a4a6498..5ce2b61 100644 ---

[PATCH v2 18/21] smiapp: Use actual pixel rate calculated by the PLL calculator

2014-04-14 Thread Sakari Ailus
Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/i2c/smiapp/smiapp-core.c b/drivers/media/i2c/smiapp/smiapp-core.c index 6d940f0..284df17 100644 ---

[PATCH v2 05/21] smiapp: Use I2C adapter ID and address in the sub-device name

2014-04-14 Thread Sakari Ailus
The sub-device names should be unique. Should two identical sensors be present in the same media device they would be indistinguishable. The names will change e.g. from vs6555 pixel array to vs6555 1-0010 pixel array. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com ---

[PATCH v2 19/21] smiapp-pll: Add quirk flag for sensors that effectively use double pix clks

2014-04-14 Thread Sakari Ailus
Some sensors have effectively the double pixel (and other clocks) compared to calculations. The frequency of the bus is also affected similarly so take this into account when calculating pll_op_clock frequency. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com ---

[PATCH v2 11/21] smiapp-pll: The clock tree values are unsigned --- fix debug prints

2014-04-14 Thread Sakari Ailus
These values are unsigned, so use %u instead of %d. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 94 +- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/drivers/media/i2c/smiapp-pll.c

[PATCH v2 20/21] smiapp: Define macros for obtaining properties of register definitions

2014-04-14 Thread Sakari Ailus
The register address, width and flags are encoded as a 32-bit value. Add macros for obtaining these separately. Use the macros in register access functions. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-regs.c | 13 +++--

[PATCH v2 21/21] smiapp: Add register diversion quirk

2014-04-14 Thread Sakari Ailus
Add a quirk for diverting registers for on some sensors, even the standard registers are not where they can be expected to be found. Add a quirk to to help using such sensors. smiapp_write_no_quirk() and smiapp_read_no_quirk() functions are provided for the use of quirk implementations.

[PATCH v2 12/21] smiapp: Limits can be 64 bits

2014-04-14 Thread Sakari Ailus
Limits may exceed the value range of 32 bit unsigned integers. Thus use 64 bits instead. Use typed min/max/clamp macros. Debug printing changes as well. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-core.c | 30 --

[PATCH v2 02/21] smiapp: Rename SMIA_REG to SMIAPP_REG for consistency

2014-04-14 Thread Sakari Ailus
SMIAPP_REG_ is the common prefix used in the driver for register related definitions. Use it consistently. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp/smiapp-quirk.c| 2 +- drivers/media/i2c/smiapp/smiapp-reg-defs.h | 8

[PATCH v2 15/21] smiapp: Remove validation of op_pix_clk_div

2014-04-14 Thread Sakari Ailus
op_pix_clk_div is directly assigned and not calculated. There's no need to verify it. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/media/i2c/smiapp-pll.c

[PATCH v2 10/21] smiapp-pll: Correct clock debug prints

2014-04-14 Thread Sakari Ailus
The PLL flags were not used correctly. Signed-off-by: Sakari Ailus sakari.ai...@linux.intel.com --- drivers/media/i2c/smiapp-pll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/i2c/smiapp-pll.c b/drivers/media/i2c/smiapp-pll.c index 2335529..ab5d9a3 100644

[GIT PULL FOR v3.16] Various fixes

2014-04-14 Thread Hans Verkuil
Hi Mauro, Various fixes, most notable are the vb2 fixes and davinci improvements. Regards, Hans The following changes since commit a83b93a7480441a47856dc9104bea970e84cda87: [media] em28xx-dvb: fix PCTV 461e tuner I2C binding (2014-03-31 08:02:16 -0300) are available in the git

Re: stk1160 / ehci-pci 0000:00:0a.0: DMA-API: device driver maps memory fromstack [addr=ffff88003d0b56bf]

2014-04-14 Thread Ezequiel Garcia
On Apr 13, Alan Stern wrote: On Sun, 13 Apr 2014, Sander Eikelenboom wrote: Hi, I'm hitting this warning on boot with a syntek usb video grabber, it's not clear to me if it's a driver issue of the stk1160 or a generic ehci issue. It is a bug in the stk1160 driver. Thanks for

Re: [PATCH] uvcvideo: Work around buggy Logitech C920 firmware

2014-04-14 Thread Will Manley
On Mon, 14 Apr 2014, at 1:34, Laurent Pinchart wrote: On Thursday 13 March 2014 22:08:36 William Manley wrote: On 13/03/14 17:03, Laurent Pinchart wrote: On Thursday 13 March 2014 10:48:20 Will Manley wrote: On Thu, 13 Mar 2014, at 10:23, Laurent Pinchart wrote: On Wednesday 12 March

[GIT PULL FOR v3.16] Various fixes

2014-04-14 Thread Hans Verkuil
Hi Mauro, Various fixes, most notable are the vb2 fixes, saa7134 vb2 conversion and davinci improvements. This pull request supersedes https://patchwork.linuxtv.org/patch/23123/ and https://patchwork.linuxtv.org/patch/23596/. The saa7134 vb2 conversion patches had to be rebased on top of the

Re: stk1160 / ehci-pci 0000:00:0a.0: DMA-API: device driver maps memory fromstack [addr=ffff88003d0b56bf]

2014-04-14 Thread Ezequiel Garcia
On Apr 13, Sander Eikelenboom wrote: I'm hitting this warning on boot with a syntek usb video grabber, it's not clear to me if it's a driver issue of the stk1160 or a generic ehci issue. Can't reproduce the same warning easily here. Could you test the following patch? diff --git

RE: [ANNOUNCE] media mini-summit on May, 2 in San Jose

2014-04-14 Thread Kamil Debski
Hi, From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Mauro Carvalho Chehab Sent: Wednesday, March 19, 2014 8:02 PM As discussed on our IRC #v4l channels, most of the core developers will be in San Jose - CA - USA for the Embedded Linux

OV7670: ENUM_FRAMESIZES seems buggy to me

2014-04-14 Thread Guennadi Liakhovetski
Hi Jonathan, This loop in ov7670_enum_framesizes(): for (i = 0; i n_win_sizes; i++) { struct ov7670_win_size *win = info-devtype-win_sizes[index]; if (info-min_width win-width info-min_width) continue; if

[PATCH] V4L2: ov7670: fix a wrong index, potentially Oopsing the kernel from user-space

2014-04-14 Thread Guennadi Liakhovetski
Commit 75e2bdad8901a0b599e01a96229be922eef1e488 ov7670: allow configuration of image size, clock speed, and I/O method uses a wrong index to iterate an array. Apart from being wrong, it also uses an unchecked value from user-space, which can cause access to unmapped memory in the kernel, triggered

Re: OV7670: ENUM_FRAMESIZES seems buggy to me

2014-04-14 Thread Jonathan Corbet
On Mon, 14 Apr 2014 14:50:15 +0200 (CEST) Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: If any of the above if statements is true, it will stay true forever, until the loop terminates. If that's intended, you could at least use break immediately. If it's not - something else is wrong

Re: [PATCH/RFC v3 1/5] leds: Add sysfs and kernel internal API for flash LEDs

2014-04-14 Thread Sakari Ailus
Hi Jacek, Thanks for the update! Some comments below. I'll try to reply to the rest during the coming days. On Fri, Apr 11, 2014 at 04:56:52PM +0200, Jacek Anaszewski wrote: Some LED devices support two operation modes - torch and flash. This patch provides support for flash LED devices in

[PATCH] cx23885: add support for Hauppauge ImpactVCB-e

2014-04-14 Thread Hans Verkuil
This patch adds support for the Hauppauge ImpactVCB-e card to cx23885. Tested with Composite input and S-Video. While I do get audio it is very choppy. It is not clear whether that is a general cx23885 driver problem or specific to this board. If it is specific to the board, then I might have

Re: [PATCH] cx23885: add support for Hauppauge ImpactVCB-e

2014-04-14 Thread Steven Toth
Hi Hans, While I do get audio it is very choppy. It is not clear whether that is a general cx23885 driver problem or specific to this board. If it is specific to the board, then I might have missed something. Steven (Toth, not Cookson ;-) ), do you have an idea what it might be? Nothing

[PATCH] media: davinci: vpbe: release buffers in case start_streaming call back fails

2014-04-14 Thread Lad, Prabhakar
From: Lad, Prabhakar prabhakar.cse...@gmail.com this patch adds support to release the buffer by calling vb2_buffer_done(), with state marked as VB2_BUF_STATE_QUEUED if start_streaming() call back fails. Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com ---

[PATCH 4/4] drm: exynos: hdmi: add support for pixel clock limitation

2014-04-14 Thread Tomasz Stanislawski
Adds support for limitation of maximal pixel clock of HDMI signal. This feature is needed on boards that contains lines or bridges with frequency limitations. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- .../devicetree/bindings/video/exynos_hdmi.txt |4

[PATCH 1/4] drm: exynos: hdmi: simplify extracting hpd-gpio from DT

2014-04-14 Thread Tomasz Stanislawski
This patch eliminates redundant checks while retrieving HPD gpio from DT during HDMI's probe(). Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git

[PATCH 0/4] drm: exynos: update/fixes to HDMI driver

2014-04-14 Thread Tomasz Stanislawski
Hi everyone, This patchset adds 4 fixes/updates to EXYNOS DRM driver for HDMI subsystem. All comments are welcome. Regards, Tomasz Stanislawski Tomasz Stanislawski (4): drm: exynos: hdmi: simplify extracting hpd-gpio from DT drm: exynos: mixer: fix using usleep() in atomic context drm:

[PATCH 3/4] drm: exynos: add compatibles for HDMI and Mixer chips and exynos4210 SoC

2014-04-14 Thread Tomasz Stanislawski
This patch add proper compatibles for Mixer and HDMI chip available on exynos4210 SoCs. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c |3 +++ drivers/gpu/drm/exynos/exynos_mixer.c |3 +++ 2 files changed, 6 insertions(+) diff --git

[PATCH 2/4] drm: exynos: mixer: fix using usleep() in atomic context

2014-04-14 Thread Tomasz Stanislawski
This patch fixes calling usleep_range() after taking reg_slock using spin_lock_irqsave(). The mdelay() is used instead. Waiting in atomic context is not the best idea in general. Hopefully, waiting occurs only when Video Processor fails to reset correctly. Signed-off-by: Tomasz Stanislawski

Re: [PATCH 1/4] drm: exynos: hdmi: simplify extracting hpd-gpio from DT

2014-04-14 Thread Tomasz Stanislawski
On 04/14/2014 05:00 PM, Tomasz Stanislawski wrote: This patch eliminates redundant checks while retrieving HPD gpio from DT during HDMI's probe(). Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c | 13 - 1 file changed, 4

Re: stk1160 / ehci-pci 0000:00:0a.0: DMA-API: device driver maps memory fromstack [addr=ffff88003d0b56bf]

2014-04-14 Thread Ezequiel Garcia
On Apr 14, Ezequiel Garcia wrote: On Apr 13, Sander Eikelenboom wrote: I'm hitting this warning on boot with a syntek usb video grabber, it's not clear to me if it's a driver issue of the stk1160 or a generic ehci issue. Can't reproduce the same warning easily here. Could you

[PATCH] media: stk1160: Avoid stack-allocated buffer for control URBs

2014-04-14 Thread Ezequiel Garcia
Currently stk1160_read_reg() uses a stack-allocated char to get the read control value. This is wrong because usb_control_msg() requires a kmalloc-ed buffer, and a DMA-API warning is produced: WARNING: CPU: 0 PID: 1376 at lib/dma-debug.c:1153 check_for_stack+0xa0/0x100() ehci-pci :00:0a.0:

[GIT PULL] Fixes for v3.15

2014-04-14 Thread Sylwester Nawrocki
Hi Mauro, This includes a compilation error fix for s5c73m3 driver related to recently merged patch series moving the v4l2-of code and a memory allocation bug fix for the Exynos FIMC driver. The following changes since commit c9eaa447e77efe77b7fa4c953bd62de8297fd6c5: Linux 3.15-rc1

Re: [PATCH] media: stk1160: Avoid stack-allocated buffer for control URBs

2014-04-14 Thread Sander Eikelenboom
Monday, April 14, 2014, 6:41:05 PM, you wrote: Currently stk1160_read_reg() uses a stack-allocated char to get the read control value. This is wrong because usb_control_msg() requires a kmalloc-ed buffer, and a DMA-API warning is produced: WARNING: CPU: 0 PID: 1376 at lib/dma-debug.c:1153

Re: [v2] media: soc-camera: OF cameras

2014-04-14 Thread Bryan Wu
On Thu, Apr 10, 2014 at 2:18 PM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: Hi Bryan, On Tue, 8 Apr 2014, Bryan Wu wrote: Thanks Josh, I think I will take you point and rework my patch again. But I need Guennadi's review firstly, Guennadi, could you please help to review it? Ok,

Re: [PATCH] media: stk1160: Avoid stack-allocated buffer for control URBs

2014-04-14 Thread Alan Stern
On Mon, 14 Apr 2014, Ezequiel Garcia wrote: Currently stk1160_read_reg() uses a stack-allocated char to get the read control value. This is wrong because usb_control_msg() requires a kmalloc-ed buffer, and a DMA-API warning is produced: WARNING: CPU: 0 PID: 1376 at lib/dma-debug.c:1153

Re: [v2] media: soc-camera: OF cameras

2014-04-14 Thread Ben Dooks
On 14/04/14 18:14, Bryan Wu wrote: On Thu, Apr 10, 2014 at 2:18 PM, Guennadi Liakhovetski g.liakhovet...@gmx.de wrote: Hi Bryan, On Tue, 8 Apr 2014, Bryan Wu wrote: Thanks Josh, I think I will take you point and rework my patch again. But I need Guennadi's review firstly, Guennadi, could you

Re: [PATCH] media: stk1160: Avoid stack-allocated buffer for control URBs

2014-04-14 Thread Ezequiel Garcia
On Apr 14, Alan Stern wrote: On Mon, 14 Apr 2014, Ezequiel Garcia wrote: Currently stk1160_read_reg() uses a stack-allocated char to get the read control value. This is wrong because usb_control_msg() requires a kmalloc-ed buffer, and a DMA-API warning is produced: WARNING: CPU: 0

Re: [RFC] Helper to abstract vma handling in media layer

2014-04-14 Thread Jan Kara
On Fri 11-04-14 08:58:59, Hans Verkuil wrote: On 04/11/2014 12:18 AM, Jan Kara wrote: On Thu 10-04-14 23:57:38, Jan Kara wrote: On Thu 10-04-14 14:22:20, Hans Verkuil wrote: On 04/10/14 14:15, Jan Kara wrote: On Thu 10-04-14 13:07:42, Hans Verkuil wrote: On 04/10/14 12:32, Jan Kara

Re: [RFC PATCH 0/2] managed token devres interfaces

2014-04-14 Thread Shuah Khan
On 04/10/2014 08:39 AM, Mauro Carvalho Chehab wrote: Em Thu, 10 Apr 2014 12:46:53 +0100 One Thousand Gnomes gno...@lxorguk.ukuu.org.uk escreveu: For example, some devices provide standard USB Audio Class, handled by snd-usb-audio for the audio stream, while the video stream is handled via a

Re: [PATCH 3/4] drm: exynos: add compatibles for HDMI and Mixer chips and exynos4210 SoC

2014-04-14 Thread Joonyoung Shim
Hi Tomasz, On 04/15/2014 12:00 AM, Tomasz Stanislawski wrote: This patch add proper compatibles for Mixer and HDMI chip available on exynos4210 SoCs. Signed-off-by: Tomasz Stanislawski t.stanisl...@samsung.com --- drivers/gpu/drm/exynos/exynos_hdmi.c |3 +++

Re: [PATCH] uvc: update uvc_endpoint_max_bpi to handle USB_SPEED_WIRELESS devices

2014-04-14 Thread Thomas Pugliese
On Mon, 27 Jan 2014, Laurent Pinchart wrote: Hi Thomas, On Monday 27 January 2014 09:54:58 Thomas Pugliese wrote: On Mon, 27 Jan 2014, Laurent Pinchart wrote: On Friday 24 January 2014 15:17:28 Thomas Pugliese wrote: Isochronous endpoints on devices with speed == USB_SPEED_WIRELESS

cron job: media_tree daily build: ERRORS

2014-04-14 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Tue Apr 15 04:00:26 CEST 2014 git branch: test git hash: 277a163c83d7ba93fba1e8980d29a9f8bfcfba6c gcc

From Dr.Paul Sawadogo

2014-04-14 Thread Mrs. Mary Adams
My name is Dr.Paul Sawadogo from Burkina Faso please I have a cancer patient in Coma who wants me to transfer her fortune worth 4.7 Million Dollars to you.Please get back to me for more details. -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to

[PATCH] [media] s2255drv: fix memory leak s2255_probe()

2014-04-14 Thread Daeseok Youn
smatch says: drivers/media/usb/s2255/s2255drv.c:2246 s2255_probe() warn: possible memory leak of 'dev' Signed-off-by: Daeseok Youn daeseok.y...@gmail.com --- drivers/media/usb/s2255/s2255drv.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git