Re: [PATCH 2/2] dma: ipu_idmac: do not lose valid received data in the irq handler

2011-01-30 Thread Dan Williams
On Thu, Jan 27, 2011 at 12:22 AM, Anatolij Gustschin wrote: > Reading the commit message again I now realize that there is > a mistake. > > On Wed, 26 Jan 2011 09:49:49 +0100 > Anatolij Gustschin wrote: > ... >> received data. DMA_BUFx_RDY won't be set by the IPU, so waiting >> for this event in

Re: WL1273 FM Radio driver...

2011-01-30 Thread Samuel Ortiz
Hi Matti, On Tue, Jan 18, 2011 at 05:04:23PM +0200, Matti J. Aaltonen wrote: > Hello > > I have been trying to get the WL1273 FM radio driver into the kernel for > some time. It has been kind of difficult, one of the reasons is that I > didn't realize I should have tried to involve all relevant m

Re: [PATCH] [media] OMAP1: fix use after free

2011-01-30 Thread Guennadi Liakhovetski
On Sun, 30 Jan 2011, Mathias Krause wrote: > Even though clk_put() is a no-op on most architectures it is not for > some ARM implementations. To not fail on those, release the clock timer > before freeing the surrounding structure. Hm, ok, I guess, it is a noop on OMAP1, otherwise they'd notice t

Re: [PATCH v2] video/saa7164: Fix sparse warning: Using plain integer as NULL pointer

2011-01-30 Thread Devin Heitmueller
On Sun, Jan 30, 2011 at 2:33 PM, Peter Huewe wrote: > From: Peter Huewe > > This patch fixes the warning "Using plain integer as NULL pointer", > generated by sparse, by replacing >        if(var == 0) > with >        if (!var) > after an allocation > and all other offending 0s with NULL. > > Ker

[PATCH v2] video/saa7164: Fix sparse warning: Using plain integer as NULL pointer

2011-01-30 Thread Peter Huewe
From: Peter Huewe This patch fixes the warning "Using plain integer as NULL pointer", generated by sparse, by replacing if(var == 0) with if (!var) after an allocation and all other offending 0s with NULL. KernelVersion: linus' tree-1f0324c Signed-off-by: Peter Huewe --- v2: I

Re: tevii s660 still not working properly, hardware donation

2011-01-30 Thread Goga777
try please this patch and patched firmware from vip100 http://linuxdvb.org.ru/wbb/index.php?page=Thread&postID=19310#post19310 > I know you are mantaining the drivers for the tevii s660 usb. > After a few month testing/waiting i still cannot get it to work properly > using the repo: http://mercu

[cron job] v4l-dvb daily build: ERRORS

2011-01-30 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Sun Jan 30 19:00:28 CET 2011 git master: 1b59be2a6cdcb5a12e18d8315c07c94a624de48f git media-master: gcc version: i6

AF9015 Problem

2011-01-30 Thread David Ondracek
Hi there, I have a problem using my DIGITRADE DVB-T stick, which is marked as fully supported in the wiki. It works fine for a while, but after some time it crashes and I have to reboot and disconnect the stick to make it work again (for a while) dmesg | grep af9015 says: [ 12.832866] dvb

[PATCH] [media] OMAP1: fix use after free

2011-01-30 Thread Mathias Krause
Even though clk_put() is a no-op on most architectures it is not for some ARM implementations. To not fail on those, release the clock timer before freeing the surrounding structure. This bug was spotted by the semantic patch tool coccinelle using the script found at scripts/coccinelle/free/kfree.