Fwd: em28xx leaks

2012-01-28 Thread Chris Rankin
Subject: em28xx leaks Date: Fri, 27 Jan 2012 13:21:50 -0600 From: Todd Squires squir...@ct0.com Organisation: Core Technologies To: ranki...@yahoo.com Hi Chris, I've recently started using an em28xx, and have run into a memory leak in the 3.2.1 kernel. Poking around the Internet, I found that

[PATCH] media: Use KERN_ERR not KERN_ERROR in saa7164.h

2012-01-28 Thread Masanari Iida
Correct KERN_ERROR to KERN_ERR in drivers/media/video/saa7164/saa7164.h Signed-off-by: Masanari Iida standby2...@gmail.com --- drivers/media/video/saa7164/saa7164.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/saa7164/saa7164.h

Re: [RFC PATCH 0/4] Add some new camera controls

2012-01-28 Thread Sylwester Nawrocki
Hi everybody, On 01/04/2012 10:07 PM, Sakari Ailus wrote: On Fri, Dec 30, 2011 at 12:18:40PM +0100, Sylwester Nawrocki wrote: Thus we would three levels of controls for camera, 1) image source class (lowest possible level), dealing mostly with hardware registers; I intended the

Re: [PATCH] media: Use KERN_ERR not KERN_ERROR in saa7164.h

2012-01-28 Thread Joe Perches
On Sun, 2012-01-29 at 01:44 +0900, Masanari Iida wrote: Correct KERN_ERROR to KERN_ERR in drivers/media/video/saa7164/saa7164.h Signed-off-by: Masanari Iida standby2...@gmail.com [] diff --git a/drivers/media/video/saa7164/saa7164.h b/drivers/media/video/saa7164/saa7164.h [] @@ -613,7

Re: [Linaro-mm-sig] [PATCH 12/15] drivers: add Contiguous Memory Allocator

2012-01-28 Thread Ohad Ben-Cohen
Hi Marek, On Fri, Jan 27, 2012 at 5:17 PM, Marek Szyprowski m.szyprow...@samsung.com wrote: There have been some vmalloc layout changes merged to v3.3-rc1. That was dead-on, thanks a lot! I did then bump into a different allocation failure which happened because dma_alloc_from_contiguous()

cron job: media_tree daily build: WARNINGS

2012-01-28 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 Jan 28 19:00:15 CET 2012 git hash:59b30294e14fa6a370fdd2bc2921cca1f977ef16 gcc version: i686-linux-gcc

Re: [PATCH 1/5] Driver core: driver_find() drops reference before returning

2012-01-28 Thread Dmitry Torokhov
On Tue, Jan 24, 2012 at 01:34:24PM -0500, Alan Stern wrote: As part of the removal of get_driver()/put_driver(), this patch (as1510) changes driver_find(); it now drops the reference it acquires before returning. The patch also adjusts all the callers of driver_find() to remove the now

[PATCH] it913x ver 1.24 Make 0x60 default on version 2 devices.

2012-01-28 Thread Malcolm Priestley
Some version 2 devices have different tuner IDs. ID 0x38 appears to have weak signal strength. Apply default 0x60 to unknown IDs. Signed-off-by: Malcolm Priestley tvbox...@gmail.com --- drivers/media/dvb/dvb-usb/it913x.c | 11 +-- 1 files changed, 9 insertions(+), 2 deletions(-) diff

[PATCH] tm6000: Don't use pointer after freeing it in tm6000_ir_fini()

2012-01-28 Thread Jesper Juhl
In tm6000_ir_fini() there seems to be a problem. rc_unregister_device(ir-rc); calls rc_free_device() on the pointer it is given, which frees it. Subsequently the function does: if (!ir-polling) __tm6000_ir_int_stop(ir-rc); and __tm6000_ir_int_stop() dereferences the pointer it is given,