Re: [v4l-dvb-maintainer] [GIT PATCHES] V4L/DVB updates

2007-04-16 Thread Mauro Carvalho Chehab
Em Seg, 2007-04-16 às 10:17 +0200, Markus Rechberger escreveu: On 4/16/07, Manu Abraham [EMAIL PROTECTED] wrote: Michael Krufky wrote: Mauro, I've been out of town for the past few days... I just got home and saw this: Mauro Carvalho Chehab wrote: - Fix 1/3 for bug

Re: [v4l-dvb-maintainer] [GIT PATCHES] V4L/DVB updates

2007-04-16 Thread Mauro Carvalho Chehab
I have tested these patches with 2.6.20-mh1 + v4l-dvb-b5be3479f070 patchset. I also tried 2.6.21-rc6 + v4l-dvb-b5be3479f070 patchset and this combination also works without OOPS. Yes, that shows that the changesets prevent the oops, but it says nothing about vanilla 2.6.20.y

[RFC PATCH 1/3] Add ability to keep track of callers of symbol_(get|put)

2007-03-09 Thread Mauro Carvalho Chehab
-by: Mauro Carvalho Chehab [EMAIL PROTECTED] diff --git a/include/linux/module.h b/include/linux/module.h --- a/include/linux/module.h +++ b/include/linux/module.h @@ -169,9 +169,10 @@ struct notifier_block; #ifdef CONFIG_MODULES /* Get/put a kernel symbol (calls must be symmetric) */ -void

[RFC PATCH 2/3] Update mtd use of symbol_(get|put)

2007-03-09 Thread Mauro Carvalho Chehab
From: Trent Piepho [EMAIL PROTECTED] Make the mtd sub-system work with changes to __symbol_get(). mtd calls __symbol_get() directly, rather than through the symbol_get() macro because it uses a string it created with sprintf to specify the symbol to attach to. It needs to be updated to supply

[RFC PATCH 3/3] Update dvb use of symbol_(get|put)

2007-03-09 Thread Mauro Carvalho Chehab
From: Trent Piepho [EMAIL PROTECTED] Make the dvb sub-system use the ability of symbol_(put|get) to keep track of what module did the putting or getting. In the dvb sub-system, symbol_put is called through the macro dvb_attach(). A driver for a bridge or card will attach frontends, tuners, or

Re: [PATCH] drivers/media/video/se401.c: check kmalloc() return value.

2007-03-09 Thread Mauro Carvalho Chehab
Hi Oliver, Em Sex, 2007-03-09 às 09:31 +0100, Oliver Neukum escreveu: Am Freitag, 9. März 2007 08:30 schrieb Amit Choudhary: Description: Check the return value of kmalloc() in function se401_start_stream(), in file drivers/media/video/se401.c. Firstly, USB patches to the USB list. No.

[RFC PATCH 0/3] Fix module information when symbol_get is used

2007-03-09 Thread Mauro Carvalho Chehab
Hi Rusty, DVB code uses symbol_get/symbol_put functions at module.c to allow dynamically add frontend modules (responsible for tuning and demodulating the digital signal). The problem is that symbol_get doesn't properly mark the module that requested it. Trent worked on a fix for this, by using

Re: [PATCH] dvb-core: Fix several locking related problems.

2007-03-10 Thread Mauro Carvalho Chehab
Em Sáb, 2007-03-10 às 02:49 +0100, Johannes Stezenbach escreveu: On Sun, Mar 04, 2007 at 05:45:54PM +, Simon Arlott wrote: Fix several instances of dvb-core functions using mutex_lock_interruptible and returning -ERESTARTSYS where the calling function will either never retry or never

[PATCH 000/196] V4L/DVB updates

2007-02-14 Thread Mauro Carvalho Chehab
Linus, Please pull 'master' from: git://git.kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master Basically, this series adds support for a bunch of newer cards and newer drivers, do some relevant cleanups on cx88 (improving source code readability and reducing binary code

Re: [PATCH 000/196] V4L/DVB updates

2007-02-15 Thread Mauro Carvalho Chehab
On Thu, 15 Feb 2007, Heikki Orsila wrote: On Thu, Feb 15, 2007 at 03:59:55AM -0200, Mauro Carvalho Chehab wrote: Basically, this series adds support for a bunch of newer cards and newer drivers, do some relevant cleanups on cx88 (improving source code readability and reducing binary code size

Re: [PATCH 000/196] V4L/DVB updates

2007-02-17 Thread Mauro Carvalho Chehab
Em Sex, 2007-02-16 às 01:05 +0200, Georgi Chorbadzhiyski escreveu: Mauro Carvalho Chehab wrote: Basically, this series adds support for a bunch of newer cards and newer drivers, do some relevant cleanups on cx88 (improving source code readability and reducing binary code size), adds FM

Re: Porting V4L2 drivers to 2.6.20

2007-03-17 Thread Mauro Carvalho Chehab
Em Ter, 2007-03-13 às 11:08 +0100, Laurent Pinchart escreveu: Hey, am porting V4L2 drivers from 2.6.13 to 2.6.20. The driver is using a structure 'video_device' which exists in include/linux/videodev.h. However, The linux kernel in 2.6.20 doesnot have that

[GIT PATCHES] V4L/DVB fixes

2007-03-26 Thread Mauro Carvalho Chehab
and tuner Mauro Carvalho Chehab: V4L/DVB (5408): Fix SECAM handling on saa7115 Oliver Endriss: V4L/DVB (5441): Saa7146: Fix allocation of clipping memory Simon Arlott: V4L/DVB (5400): Core: fix several locking related problems Thomas Viehweger: V4L/DVB (5472): Isl6421: don't

Re: [GIT PATCHES] V4L/DVB fixes

2007-03-27 Thread Mauro Carvalho Chehab
Hi Linus, Em Seg, 2007-03-26 às 14:55 -0700, Linus Torvalds escreveu: On Mon, 26 Mar 2007, Mauro Carvalho Chehab wrote: Please pull 'master' from: git://git.kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master Already up-to-date. Forgot to push? Seems so

[GIT PATCHES] V4L/DVB updates

2007-04-15 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For the following: - Fix Kernel Bugzilla #8301: spinlock fix for flexcop-pci - Fix 1/3 for bug 7819: fixed frontend hotplug issue - Fix 2/3 for bug 7819: demux and dvr - Fix

[GIT PULL] V4L/DVB fixes

2007-03-01 Thread Mauro Carvalho Chehab
Linus, We have some fixes for 2.6.21 on my -git tree. There were also two newer drivers, one for zr364xx and another for ivtv. Both drivers exists for some time out of kernel tree. The first one used to have, in the past, a mjpeg conversion routine at kernel. His author removed this and

Re: [v4l-dvb-maintainer] [2.6 patch] drivers/media/video/bt8xx/bttv-cards.c: fix off-by-one

2007-03-29 Thread Mauro Carvalho Chehab
future troubles if this array have any changes on its size. I'm enclosing a patch doing this fix. Cheers, Mauro Changeset: 5476 From: Mauro Carvalho Chehab [EMAIL PROTECTED] Commiter: Mauro Carvalho Chehab [EMAIL PROTECTED] Date: Wed Mar 28 22:37:20 2007 -0300 Subject: Fix gpiomux array size

[GIT PATCHES] Two DVB fixes for 2.6.21 and -stable

2007-04-02 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For the following: - Tda10086: fix DiSEqC message length - Pluto2: fix incorrect TSCR register setting Cheers, Mauro. --- drivers/media/dvb/frontends/tda10086.c |2 +-

[GIT PATCHES] V4L/DVB fixes

2008-01-07 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For two driver regression fixes: - bttv: VIDIOCGMBUF ioctl hangs on bttv driver - ivtv: udelay has to be changed *after* the eeprom was read, not before Cheers, Mauro. ---

Re: [v4l-dvb-maintainer] [PATCH] Re: Regression: VIDIOCGMBUF ioctl hangs on bttv driver (2.6.24-rc6)

2008-01-07 Thread Mauro Carvalho Chehab
On Mon, 7 Jan 2008 00:22:34 +0100 Ingo Molnar [EMAIL PROTECTED] wrote: * Douglas Landgraf [EMAIL PROTECTED] wrote: Hi guys, Gregor, we have converted bttv driver to use vidioc_ioctl2 some days ago. Could you check and create your patch against v4l development tree? Bttv

Re: [PATCH] vivi driver works only as first device

2008-01-07 Thread Mauro Carvalho Chehab
On Sun, 6 Jan 2008 23:47:19 +0100 Gregor Jasny [EMAIL PROTECTED] wrote: On Dec 10, 2007 8:08 AM, Mauro Carvalho Chehab [EMAIL PROTECTED] wrote: Thanks for the report. Instead of applying your patch, I decided to better analyze the issue, fixing it with the proper solution. The issue

[GIT PATCHES] V4L/DVB fixes

2008-01-11 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For two driver fixes: - ivtv: There are reports of regressions, due to udelay=5 on other ivtv boards. Better to be convervative than to break devices. so, stick to

Re: [PATCH] v4l: fix build error for et61x251 driver

2007-09-14 Thread Mauro Carvalho Chehab
This patch is really ugly. Well, yes. I should have known as I converted so many occurences of to_video_device to container_of in my second patch. Why can't the to_video_device() macro be used? Just move it to a place where it's usable! IOW, what's wrong with the *much* simpler

Re: [PATCH] v4l: fix build error for et61x251 driver

2007-09-14 Thread Mauro Carvalho Chehab
through ioctl()? It's not as immediate and safe as controlling the device registers through /sysfs (not /proc). However, the sysfs interface in those drivers appeared before V4L2 had its own ioctls and we agreed to keep and export the interface to the only users selecting CONFIG_VIDEO_ADV_DEBUG

[GIT PATCHES] V4L/DVB fixes

2007-09-14 Thread Mauro Carvalho Chehab
for et61x251 driver Mauro Carvalho Chehab (1): V4L/DVB (6148): Fix a warning at saa7191_probe Robert P. J. Day (1): V4L/DVB (6173a): Documentation: Remove reference to dead cpia_pp= boot-time option Stas Sergeev (1): V4L/DVB (6144): Fix mux setup for composite sound on AverTV 307

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-14 Thread Mauro Carvalho Chehab
Markus, Maybe you still don't realize how tiresome it is to talk to you. What you present as linuxtv people block my contributions is IMHO linuxtv people got fed up talking to you. Because when people disagree with you, you keep rambling on and on instead of just accepting it. See,

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-14 Thread Mauro Carvalho Chehab
- The hybrid tuner support, that where your requirement, when all those discussions started, were already added to the subsystem. So now, an hybrid tuner can be accessed by both DVB and V4L devices; It's far more complex as the thing which is implemented there. The only thing that has

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-14 Thread Mauro Carvalho Chehab
There is no reason why the Xceive driver cannot be merged into the current development tree using the hybrid tuner framework as it stands today. I'm not convinced this is entirely true. In order to avoid unnecessary reinitialisation of the device, the driver needs to know whether the

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-14 Thread Mauro Carvalho Chehab
Beside that I'm just curious how much did you contribute during the last 2 years to the lkml/linux kernel, and how much do you want to contribute in future? (also from my side talk is cheap (even for me) but getting something done costs quite some time and feedback from other people)

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-14 Thread Mauro Carvalho Chehab
The main discussion in this thread was about drivers in userspace are bad because the API will allow binary drivers. No. The focus is that userspace API is not needed at all, and the community believe that this is a regression from all efforts that are being done by the community to have good

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-15 Thread Mauro Carvalho Chehab
Everyone knows that there are some issues even some internal ones which I'm not part of. With respect to your kernel-userspace API for xc3028, you made something that seemed to be a dream: there's a consensus: not a single developer believed that this is the better way; nobody seems that this

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-15 Thread Mauro Carvalho Chehab
Em Sáb, 2007-09-15 às 16:33 +0200, Markus Rechberger escreveu: I'm off for the weekend now so have a nice one :-) Enjoy your weekend. I really hope that you have some time to reflect and review your positions during the weekend. -- Cheers, Mauro - To unsubscribe from this list: send the line

Re: [PATCH] modpost: detect unterminated device id lists

2007-09-17 Thread Mauro Carvalho Chehab
Hi Andrew, Em Seg, 2007-09-17 às 14:50 -0700, Andrew Morton escreveu: On Tue, 18 Sep 2007 03:15:14 +0530 (IST) Satyam Sharma [EMAIL PROTECTED] wrote: On Sun, 16 Sep 2007, Andrew Morton wrote: On Mon, 17 Sep 2007 05:54:45 +0530 Satyam Sharma [EMAIL PROTECTED] wrote:

Re: [v4l-dvb-maintainer] modpost errors ( Re: 2.6.23-rc6-mm1)

2007-09-18 Thread Mauro Carvalho Chehab
Applied at my -git tree. Cheers, Mauro. Em Ter, 2007-09-18 às 12:37 -0400, [EMAIL PROTECTED] escreveu: Sam Ravnborg wrote: Please cc: relevant people. On Tue, Sep 18, 2007 at 05:43:35PM +0200, Gabriel C wrote: Hi, I get modpost errors here : ... ERROR: dvb_dmx_init

Re: [linux-dvb] [PATCH] Userspace tuner

2007-09-18 Thread Mauro Carvalho Chehab
The reason why there is no single 'format conversion library' that everybody uses is because of the large differences between requirements for such a thing. The line between 'format conversion' and things such as a video codec, or image processing is very vague. Agreed. What I think it should

Re: Problems using quickcam_messenger on ARM (FYI)

2007-11-12 Thread Mauro Carvalho Chehab
Em Ter, 2007-11-06 às 18:25 +0100, Markus Hirschmann escreveu: Hello Kernel-Developer, Module quickcam_messenger seems to be broken (tried 2.6.18 and 2.6.22) on 2 different NSLU2 (ARM). Picture is attached. Same kernel and module can be used without any problems on x86 here. I don't have

Re: [v4l-dvb-maintainer] [RFC: 2.6 patch] remove saa7134-oss

2007-11-12 Thread Mauro Carvalho Chehab
. Since saa7134-alsa seems to do the job, it seems ok to remove saa7134-oss. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] Acked-by: Mauro Carvalho Chehab [EMAIL PROTECTED] I'll commit this patch soon at my tree. Cheers, Mauro - To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [v4l-dvb-maintainer] [PATCH 1/2] ivtv: Some general fixes

2007-12-03 Thread Mauro Carvalho Chehab
Em Dom, 2007-12-02 às 20:49 +0100, Hans Verkuil escreveu: On Sunday 02 December 2007 18:46, Richard Knutsson wrote: Fix warning: Using plain integer as NULL pointer. Signed-off-by: Hans Verkuil [EMAIL PROTECTED] Remove a gcc-2.95 requirement. NACK! The main v4l-dvb repository that

Re: [build bug] undefined reference to `dib3000mc_get_tuner_i2c_master'

2007-12-05 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-05 às 11:33 +0100, Jiri Kosina escreveu: On Tue, 4 Dec 2007, Ingo Molnar wrote: Hmm, seems like -common part contains also code that is not completely common to all the modules. How about this? that does the trick and 2.6.24-rc4 now builds boots fine with that

Re: [v4l-dvb-maintainer] [PATCH 25/59] drivers/media/video: Add missing space

2007-11-20 Thread Mauro Carvalho Chehab
@@ -180,7 +180,7 @@ void cx25840_vbi_setup(struct i2c_client *client) fsc/100,fsc%100); v4l_dbg(1, cx25840_debug, client, hblank %i, hactive %i, - vblank %i , vactive %i, vblank656 %i, src_dec %i, +

Re: RTL2831U kernel driver

2007-11-22 Thread Mauro Carvalho Chehab
Em Qui, 2007-11-22 às 12:33 +, Vic escreveu: Hi All. Sorry for the breach of netiquette - I'm not subscribed to the list (please CC: me on anything important!), but I'm not really up to much a s a kernel contributor... Anyway - here's the reason for my posting. I've got a kernel

Re: [PATCH] vivi driver works only as first device

2007-12-09 Thread Mauro Carvalho Chehab
Hi Gregor, Em Qui, 2007-12-06 às 23:06 +0100, Gregor Jasny escreveu: From: Gregor Jasny [EMAIL PROTECTED] When the vivi driver allocates a video device, video_register_device() stores the allocated device minor inside the vivi structure. But when the device node is opened, the file minor

[PATCH] Fix missing \n at checkpatch.pl

2007-12-10 Thread Mauro Carvalho Chehab
Fix missing \n at checkpatch.pl From: Mauro Carvalho Chehab [EMAIL PROTECTED] Signed-off-by: Mauro Carvalho Chehab [EMAIL PROTECTED] diff -r 4f5ded04887b -r af025fddc025 v4l/scripts/checkpatch.pl --- a/v4l/scripts/checkpatch.pl Mon Dec 10 11:55:54 2007 -0200 +++ b/v4l/scripts/checkpatch.pl Mon

[GIT PATCHES] V4L/DVB fixes

2007-12-11 Thread Mauro Carvalho Chehab
): saa7134: fix composite over s-video input on the Tevion MD 9717 Jiri Kosina (1): V4L/DVB (6733): DVB: Compile 3000MC-specific DIB code only for CONFIG_DVB_DIB3000MC Mauro Carvalho Chehab (4): V4L/DVB (6542): Fix S-video mode on tvp5150 V4L/DVB (6581): Fix: avoids negative vma

Re: [v4l-dvb-maintainer] [GIT PATCHES] V4L/DVB fixes

2007-12-11 Thread Mauro Carvalho Chehab
^^ This patch fixes a build issue that only applies to new devices that depend on the tuner-xc2028 module, which is planned to be added to mainline for 2.6.25 We don't need to send this patch upstream yet, because the dependency doesn't exist in 2.6.24. Hmm... ok. Anyway, It

Re: [v4l-dvb-maintainer] [GIT PATCHES] V4L/DVB fixes

2007-12-11 Thread Mauro Carvalho Chehab
Em Ter, 2007-12-11 às 21:14 -0500, Michael Krufky escreveu: Mauro Carvalho Chehab wrote: Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master [snip] Mauro, Mauro Carvalho Chehab (4): V4L/DVB (6750): Fix in-kernel

[GIT PATCHES] V4L/DVB fix

2007-12-12 Thread Mauro Carvalho Chehab
deletions(-) Mauro Carvalho Chehab (1): V4L/DVB (6609): Re-adds lock safe videobuf_read_start --- V4L/DVB development is hosted at http://linuxtv.org -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: 2.6.24-rc5 videobuf_read_start [drivers/media/video/videobuf-dvb.ko] undefined!

2007-12-12 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 00:20 -0500, Shane escreveu: In 2.6.24-rc5+, I hit this problem with videobuf_read_start not being exported. Patch attached, only compile tested. CHK include/linux/version.h CHK include/linux/utsrelease.h CALLscripts/checksyscalls.sh CHK

Re: 2.6.24-rc5 videobuf_read_start [drivers/media/video/videobuf-dvb.ko] undefined!

2007-12-12 Thread Mauro Carvalho Chehab
Any objections against a later path that changes the exports to the general immediately after the function convention? No objections. Please generate against devel branch on my -git, since I did a patch fixing most CodingStyle issues reported by checkpatch.pl. Several files under /media still

Re: 2.6.24-rc5 videobuf_read_start [drivers/media/video/videobuf-dvb.ko] undefined!

2007-12-12 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 13:03 +0100, Adrian Bunk escreveu: On Wed, Dec 12, 2007 at 09:03:14AM -0200, Mauro Carvalho Chehab wrote: ... I'm afraid that this wouldn't avoid this bug, however. The removal of the EXPORT_SYMBOL_GPL seemed to be the intention of Brandon, since he renamed

Re: V4L changes broke compilation in 2.6.24-rc5+git

2007-12-12 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 15:37 +0200, Meelis Roos escreveu: Got this error on x86-64 from todays git (after the V4L merge): ERROR: videobuf_read_start [drivers/media/video/videobuf-dvb.ko] undefined! This changeset fixes the issue.

Re: [v4l-dvb-maintainer] build #340 failed for 2.6.24-rc5-g75b8c13 in linux/drivers/media/video/tuner.ko

2007-12-12 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 08:42 -0500, Michael Krufky escreveu: ERROR: tea5761_attach [drivers/media/video/tuner.ko] undefined! ERROR: tea5761_autodetection [drivers/media/video/tuner.ko] undefined! ERROR: tea5767_autodetection [drivers/media/video/tuner.ko] undefined! ERROR: tea5767_attach

Re: [v4l-dvb-maintainer] [2.6 patch] drivers/media/Makefile: always enter video/

2007-12-13 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 13:13 -0800, Trent Piepho escreveu: On Wed, 12 Dec 2007, Adrian Bunk wrote: I don't see any issue on making both dependent on VIDEO_TUNER for 2.6.24, since they are currently used only by tuner core module (tuner.ko). ... If selected code isn't included

Re: [2.6 patch] videobuf-core.c locking fixes

2007-12-13 Thread Mauro Carvalho Chehab
e1f8b4a49d86746f699919531c17fd154787e308 diff --git a/drivers/media/video/videobuf-core.c b/drivers/media/video/videobuf-core.c index 81f77d2..c8a5cb5 100644 --- a/drivers/media/video/videobuf-core.c +++ b/drivers/media/video/videobuf-core.c @@ -909,7 +909,7 @@ ssize_t

Re: 2.6.24-rc5 videobuf_read_start [drivers/media/video/videobuf-dvb.ko] undefined!

2007-12-13 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 23:19 +0100, Jean Delvare escreveu: Hi Mauro, On Wed, 12 Dec 2007 12:21:56 -0200, Mauro Carvalho Chehab wrote: What happened is that changeset 19bc5133dae9562e8824ef101464061f9854c1d8 fixed some bad locks. After this changeset, videobuf_read_stream() holds q

Re: [v4l-dvb-maintainer] build #340 failed for 2.6.24-rc5-g75b8c13 in?linux/drivers/media/video/tuner.ko

2007-12-13 Thread Mauro Carvalho Chehab
Toralf, Just double checking: Adrian patch fixed the bug? If so, I'd like to close the bugzilla and forward it to Linus. -- Cheers, Mauro -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

[GIT PATCHES] V4L/DVB fixes

2007-12-13 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For the following: - Regression fixes: - Fix videobuf-core locks; - Fix some troubles at building system. - Three small driver fixes, on saa7134, bt866 and

Re: [2.6 patch] videobuf-core.c locking fixes

2007-12-14 Thread Mauro Carvalho Chehab
Em Qua, 2007-12-12 às 16:22 -0500, Shane escreveu: Yes it does! I was just going to send the same patch myself :) But, I am now seeing some errors that weren't there in 2.6.23 kernel: bttv0: SCERR @ 1fa0401c,bits: HSYNC OFLOW SCERR* last message repeated 15 times kernel: bttv0: timeout:

[GIT PATCHES] V4L/DVB updates

2007-12-24 Thread Mauro Carvalho Chehab
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For two trivial driver fixes: - A fix at Kconfig to DVB_LGDT330X be selected on cx23885; - Some ivtv boards requres a longer i2c udelay for they to work. Cheers, Mauro. ---

Re: [build bug, 2.6.24-rc1] CONFIG_VIDEO_DEV=m CONFIG_VIDEO_SAA7146_VV=y

2007-10-29 Thread Mauro Carvalho Chehab
On Mon, 29 Oct 2007, Ingo Molnar wrote: * Randy Dunlap [EMAIL PROTECTED] wrote: config VIDEO_SAA7146_VV tristate depends on VIDEO_DEV = y || VIDEO_DEV = VIDEO_SAA7146_VV select VIDEOBUF_DMA_SG select VIDEO_SAA7146 (untested) Nope, won't work. I tried that

Re: [v4l-dvb-maintainer] bttv build error (CONFIG_NET=n)

2007-11-01 Thread Mauro Carvalho Chehab
Randy, The only reason the net stuff works, is because CONFIG_NET includes igmp.c, which can't be compiled as a module. That means ip_compute_csum() will get pulled out of the lib.a file for igmp, and thus be present for the net modules that use it too. If igmp could be turned off,

Re: [build bug, 2.6.24-rc1] CONFIG_VIDEO_DEV=m CONFIG_VIDEO_SAA7146_VV=y

2007-11-01 Thread Mauro Carvalho Chehab
Hi Ingo, On Qui, 2007-11-01 at 10:01 +0100, Ingo Molnar wrote: * Trent Piepho [EMAIL PROTECTED] wrote: On Fri, 26 Oct 2007, Ingo Molnar wrote: the attached config (generated via make randconfig) fails to build due to the combination of these config entries: CONFIG_VIDEO_DEV=m

[GIT PATCHES] V4L/DVB fixes

2007-10-17 Thread Mauro Carvalho Chehab
of ERESTARTSYS Marco Schluessler (1): V4L/DVB (6356): while (!ca-wakeup) breaks the CAM initialisation Mauro Carvalho Chehab (3): V4L/DVB (6320): v4l core: remove the unused .hardware V4L1 field V4L/DVB (6378a): Removal of VIDIOC_[G|S]_MPEGCOMP from feature-removal-schedule.txt

Re: suspicious ALSA empty commit

2007-10-19 Thread Mauro Carvalho Chehab
I'm using stg on top of git for merging and easy tree rebasing, but the version might be old (I'll try upgrade at first): Stacked GIT 0.12 git version 1.5.0.3 stg import / refresh / pick commands are on way to move patches to linus with stgit, you should add stg clean on your workflow. This

Re: [Fwd: [PATCH 1/4] fix not-and/or errors]

2007-10-19 Thread Mauro Carvalho Chehab
Chehab [EMAIL PROTECTED] -Mike On Thu, 18 Oct 2007, Mauro Carvalho Chehab wrote: Mike, Please take a look on this patch. Cheers, Mauro. Mensagem encaminhada De: Roel Kluin [EMAIL PROTECTED] Para: lkml linux-kernel@vger.kernel.org Assunto: [PATCH 1/4

Re: [v4l-dvb-maintainer] DVB: BANDWIDTH_TO_KHZ strangeness

2007-10-22 Thread Mauro Carvalho Chehab
I know that in the future the linux-dvb-API will also support other bandwidths so I'm begging for mercy for those 3 things here to not get too much out-of-sync with our internal code. I don't see much problem on keeping this for a while. However, if not causing to much troubles for you to

[GIT PATCHES] V4L/DVB fixes [RESEND]

2007-10-22 Thread Mauro Carvalho Chehab
(6382): saa7134: fix NULL dereference at suspend time for cards without IR receiver Mauro Carvalho Chehab (3): V4L/DVB (6320): v4l core: remove the unused .hardware V4L1 field V4L/DVB (6378a): Removal of VIDIOC_[G|S]_MPEGCOMP from feature-removal-schedule.txt V4L/DVB (6378b

Re: [v4l-dvb-maintainer] DVB: BANDWIDTH_TO_KHZ strangeness

2007-10-22 Thread Mauro Carvalho Chehab
Em Seg, 2007-10-22 às 21:54 +0200, Adrian Bunk escreveu: [1] except that your #else case contains the wrong value ;-) This is what happens when you try to write quick fixes ;) /me is needing a day with 48 hours... -- Cheers, Mauro - To unsubscribe from this list: send the line unsubscribe

Re: build #345 issue for v2.6.25-rc1 in tuner-core.c

2008-02-12 Thread Mauro Carvalho Chehab
On Mon, 11 Feb 2008 21:34:32 -0500 Michael Krufky [EMAIL PROTECTED] wrote: Tony Breeds wrote: On Mon, Feb 11, 2008 at 11:54:31AM +0100, Toralf Förster wrote: Hello, the build with the attached .config failed, make ending with: ... MODPOST vmlinux.o WARNING: modpost: Found 12

Re: [v4l-dvb-maintainer] [GIT PATCHES] V4L/DVB fixes

2008-02-13 Thread Mauro Carvalho Chehab
On Tue, 12 Feb 2008 21:21:43 -0800 (PST) Trent Piepho [EMAIL PROTECTED] wrote: On Tue, 12 Feb 2008, Mauro Carvalho Chehab wrote: - cx88-mpeg: Allow concurrent access to cx88-mpeg devices; So you decided to just commit this one with the race condition anyway? The version with problems

Re: [PATCH] bttv: Fix overlay divide error.

2008-02-13 Thread Mauro Carvalho Chehab
On Wed, 13 Feb 2008 16:38:11 + Robert Fitzsimons [EMAIL PROTECTED] wrote: The initial work to convert the bttv driver to V4L2 Partial conversion from V4L1 to V4L2 (e84619b17440ccca4e4db7583d126c4189b987e5), missed the line which set the appropriate overlay crop structure in the newly

Re: linux-next: first tree

2008-02-14 Thread Mauro Carvalho Chehab
The tree currently contains: Greg's driver-core, pci and usb quilt series (in that order) Alasdair Kergon's device-mapper quilt tree Jiri Kosina's hid git tree Jean Delvare's i2c quilt tree Randy Dunlap's kernel-doc quilt tree Haavard Skinnemoen's avr32

[RFC EDAC/GHES] edac: lock module owner to avoid error report conflicts

2012-10-31 Thread Mauro Carvalho Chehab
modules handling memory errors at the same time. A change is also needed at apei/ghes.c, in order to register it as an EDAC module, in order to properly enable such lock. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/edac/amd64_edac.c | 2 +- drivers/edac/amd76x_edac.c

[RFC EDAC/GHES 0/3] Add EDAC support on GHES

2012-10-31 Thread Mauro Carvalho Chehab
to retrieve the DIMM label (not sure if APEI GHES interface supports it); - detect the memory layout via ACPI; Comments, sugestions etc are welcome. Mauro Carvalho Chehab (3): ghes: Be a good citzen with EDAC edac: add support for raw error reports ghes: add support for reporting errors

[RFC EDAC/GHES 3/3] ghes: add support for reporting errors via EDAC

2012-10-31 Thread Mauro Carvalho Chehab
Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/acpi/apei/ghes.c | 52 +--- include/linux/edac.h | 1 + 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index

[RFC EDAC/GHES 2/3] edac: add support for raw error reports

2012-10-31 Thread Mauro Carvalho Chehab
That allows APEI GHES driver to report errors directly, using the EDAC error report API. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/edac/edac_core.h | 17 drivers/edac/edac_mc.c | 109 +++ 2 files changed, 99

[RFC EDAC/GHES 1/3] ghes: Be a good citzen with EDAC

2012-10-31 Thread Mauro Carvalho Chehab
Register itself at EDAC MC core, in order to avoid other drivers to get it. The edac core will warrant that just one driver will be used, so the first one to register will be the one that will be reporting the hardware errors. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers

Re: [RFC EDAC/GHES] edac: lock module owner to avoid error report conflicts

2012-11-01 Thread Mauro Carvalho Chehab
Em Thu, 1 Nov 2012 12:05:12 +0100 Borislav Petkov b...@alien8.de escreveu: + Tony. On Wed, Oct 31, 2012 at 11:58:15AM -0200, Mauro Carvalho Chehab wrote: There's a know bug that happens when apei/ghes is loaded together with an EDAC module: the same error is reported several times

Re: [RFC EDAC/GHES] edac: lock module owner to avoid error report conflicts

2012-11-01 Thread Mauro Carvalho Chehab
Em Thu, 1 Nov 2012 10:25:23 -0700 Tony Luck tony.l...@intel.com escreveu: On Thu, Nov 1, 2012 at 4:47 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Take a look at arch/x86/kernel/cpu/mcheck/mce-apei.c: void apei_mce_report_mem_error(int corrected, struct cper_sec_mem_err

Re: [RFC EDAC/GHES] edac: lock module owner to avoid error report conflicts

2012-11-01 Thread Mauro Carvalho Chehab
Em Thu, 1 Nov 2012 21:09:07 + Luck, Tony tony.l...@intel.com escreveu: Em Thu, 1 Nov 2012 20:55:09 +0100 Borislav Petkov b...@alien8.de escreveu: On Thu, Nov 01, 2012 at 09:47:21AM -0200, Mauro Carvalho Chehab wrote: 1) when both APEI/GHES and sb_edac are loaded, error reports

Re: [RFC EDAC/GHES] edac: lock module owner to avoid error report conflicts

2012-11-01 Thread Mauro Carvalho Chehab
Em Fri, 2 Nov 2012 00:54:57 +0100 Borislav Petkov b...@alien8.de escreveu: On Thu, Nov 01, 2012 at 11:47:52PM +, Luck, Tony wrote: Right, but at least in the csrow case, we still can compute back the csrow even with the interleaving, after we know how it is done exactly (on which

Re: Linux 3.6-rc6

2012-09-23 Thread Mauro Carvalho Chehab
to ded6223cfb75c4b5f61a285eee10df98a0291460: sb_edac: Avoid overflow errors at memory size calculation (2012-09-23 10:16:36 -0300) Fengguang Wu (1): edac_mc: fix kfree calls in the error path Mauro Carvalho Chehab (3): i3200_edac: Fix memory rank size

Fwd: [PATCH 5/5] drivers/media/platform/omap3isp/isp.c: fix error return code

2012-09-23 Thread Mauro Carvalho Chehab
return code Data: Tue, 4 Sep 2012 18:14:25 +0200 De: Peter Senna Tschudin peter.se...@gmail.com Para: Mauro Carvalho Chehab mche...@infradead.org CC: kernel-janit...@vger.kernel.org, julia.law...@lip6.fr, linux-me...@vger.kernel.org, linux-kernel@vger.kernel.org From: Peter Senna Tschudin

Fwd: [PATCH v2] drivers/media/platform/s5p-tv/sdo_drv.c: fix error return code

2012-09-23 Thread Mauro Carvalho Chehab
Sylwester, Please review. Regards, Mauro Mensagem original Assunto: [PATCH v2] drivers/media/platform/s5p-tv/sdo_drv.c: fix error return code Data: Thu, 6 Sep 2012 10:38:29 +0200 De: Peter Senna Tschudin peter.se...@gmail.com Para: peter.se...@gmail.com, Mauro Carvalho

Fwd: [PATCH 1/14] drivers/media/platform/soc_camera/soc_camera.c: fix error return code

2012-09-23 Thread Mauro Carvalho Chehab
Please review. Please review. Regards, Mauro. Mensagem original Assunto: [PATCH 1/14] drivers/media/platform/soc_camera/soc_camera.c: fix error return code Data: Thu, 6 Sep 2012 17:24:00 +0200 De: Peter Senna Tschudin peter.se...@gmail.com Para: Mauro Carvalho Chehab mche

Fwd: [PATCH 2/14] drivers/media/platform/soc_camera/mx2_camera.c: fix error return code

2012-09-23 Thread Mauro Carvalho Chehab
Please review, Regards, Mauro. Mensagem original Assunto: [PATCH 2/14] drivers/media/platform/soc_camera/mx2_camera.c: fix error return code Data: Thu, 6 Sep 2012 17:23:59 +0200 De: Peter Senna Tschudin peter.se...@gmail.com Para: Mauro Carvalho Chehab mche...@infradead.org

Re: [PATCH] drivers/media/pci/cx25821/cx25821-video-upstream-ch2.c: Replace kmemdup for kstrdup

2012-09-23 Thread Mauro Carvalho Chehab
Em Mon, 10 Sep 2012 14:45:54 +0200 Peter Senna Tschudin peter.se...@gmail.com escreveu: From: Peter Senna Tschudin peter.se...@gmail.com Replace kmemdup for kstrdup and cleaning up the code. Signed-off-by: Peter Senna Tschudin peter.se...@gmail.com Maintainers/interested parties not

Re: [PATCHv3 0/6] media: convert to c99 format

2012-09-25 Thread Mauro Carvalho Chehab
Em Ter, 2012-09-25 às 08:03 -0300, Ezequiel Garcia escreveu: Shubhrajyoti, Thanks for your patches. I'm adding media maintainer (Mauro) in Cc. When you send patches for a file you should check who maintains them and put those people in Cc. I actually prefer to not be c/c on the patches

Re: [PATCH 0/3] A driver for Si476x series of chips

2012-09-25 Thread Mauro Carvalho Chehab
Hi Andrey, Em Qui, 2012-09-13 às 15:40 -0700, Andrey Smirnov escreveu: This patchset contains a driver for a Silicon Laboratories 476x series of radio tuners. The driver itself is implemented as an MFD devices comprised of three parts: 1. Core device that provides all the other devices with

Re: [PATCH] media: davinci: vpif: add check for NULL handler

2012-09-26 Thread Mauro Carvalho Chehab
Em Thu, 16 Aug 2012 19:32:00 +0530 Prabhakar Lad prabhakar@ti.com escreveu: It is amazing how many SOB's/acks are in this patch and nobody asked you to provide a patch description... the subject just tells what the code is also telling. Could you please provide a better patch description?

[GIT PULL for v3.6-final] EDAC fixes

2012-09-26 Thread Mauro Carvalho Chehab
to deb09ddaff1435f72dd598d38f9b58354c68a5ec: sb_edac: Avoid overflow errors at memory size calculation (2012-09-25 07:38:20 -0300) Mauro Carvalho Chehab (3): i3200_edac: Fix memory rank size i5000: Fix the memory size calculation with 2R memories

Re: udev breakages - was: Re: Need of an .async_probe() type of callback at driver's core - Was: Re: [PATCH] [media] drxk: change it to use request_firmware_nowait()

2012-10-03 Thread Mauro Carvalho Chehab
Em 02-10-2012 19:23, Greg KH escreveu: On Tue, Oct 02, 2012 at 03:12:39PM -0700, Greg KH wrote: On Tue, Oct 02, 2012 at 09:33:03AM -0700, Linus Torvalds wrote: I don't know where the problem started in udev, but the report I saw was that udev175 was fine, and udev182 was broken, and would

Re: udev breakages - was: Re: Need of an .async_probe() type of callback at driver's core - Was: Re: [PATCH] [media] drxk: change it to use request_firmware_nowait()

2012-10-03 Thread Mauro Carvalho Chehab
Em 02-10-2012 19:47, Linus Torvalds escreveu: On Tue, Oct 2, 2012 at 3:23 PM, Greg KH gre...@linuxfoundation.org wrote: which went into udev release 187 which I think corresponds to the place when people started having problems, right Mauro? According to what I've seen, people started

Re: udev breakages - was: Re: Need of an .async_probe() type of callback at driver's core - Was: Re: [PATCH] [media] drxk: change it to use request_firmware_nowait()

2012-10-03 Thread Mauro Carvalho Chehab
Em 03-10-2012 13:57, Greg KH escreveu: On Wed, Oct 03, 2012 at 04:36:53PM +0200, Kay Sievers wrote: On Wed, Oct 3, 2012 at 12:12 AM, Greg KH gre...@linuxfoundation.org wrote: Mauro, what version of udev are you using that is still showing this issue? Kay, didn't you resolve this already?

Re: [PATCH 4/14] drivers/media/v4l2-core/videobuf2-core.c: fix error return code

2012-10-06 Thread Mauro Carvalho Chehab
Em Thu, 6 Sep 2012 17:23:57 +0200 Peter Senna Tschudin peter.se...@gmail.com escreveu: From: Peter Senna Tschudin peter.se...@gmail.com Convert a nonnegative error return code to a negative one, as returned elsewhere in the function. A simplified version of the semantic match that finds

Re: [PATCH v2] drivers/media: Remove unnecessary semicolon

2012-10-07 Thread Mauro Carvalho Chehab
Hi Peter, Em Thu, 27 Sep 2012 13:55:06 +0200 Peter Senna Tschudin peter.se...@gmail.com escreveu: Remove unnecessary semicolon And: drivers/media/dvb-frontends/stv0900_core.c: remove unnecessary whitespace before a quoted newline (answering about your v3 here, instead of at your v3

Re: [PATCH 13/13] drivers/media/tuners/e4000.c: use macros for i2c_msg initialization

2012-10-07 Thread Mauro Carvalho Chehab
Em Sun, 07 Oct 2012 14:51:58 -0700 Joe Perches j...@perches.com escreveu: On Sun, 2012-10-07 at 23:43 +0200, Julia Lawall wrote: On Sun, 7 Oct 2012, Joe Perches wrote: Are READ and WRITE the action names? They are really the important information in this case. Yes, most (all?)

Re: linux-next: build failure after merge of the v4l-dvb tree

2012-11-05 Thread Mauro Carvalho Chehab
Hi Stephen, Em Mon, 5 Nov 2012 11:34:09 +1100 Stephen Rothwell s...@canb.auug.org.au escreveu: Hi Mauro, On Mon, 29 Oct 2012 11:14:03 +1100 Stephen Rothwell s...@canb.auug.org.au wrote: After merging the v4l-dvb tree, today's linux-next build (x86_64 allmodconfig) failed like this:

Re: linux-next: build failure after merge of the v4l-dvb tree

2012-11-06 Thread Mauro Carvalho Chehab
' Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com diff --git a/drivers/media/common/siano/Kconfig b/drivers/media/common/siano/Kconfig index 3cb7823..68f0f60 100644 --- a/drivers/media/common/siano/Kconfig +++ b/drivers/media/common/siano/Kconfig @@ -5,6 +5,7 @@ config SMS_SIANO_MDTV

Re: linux-next: Tree for Nov 8

2012-11-08 Thread Mauro Carvalho Chehab
Em Thu, 8 Nov 2012 10:10:29 +0100 Sedat Dilek sedat.di...@gmail.com escreveu: On Thu, Nov 8, 2012 at 5:49 AM, Stephen Rothwell s...@canb.auug.org.au wrote: Hi all, Changes since 20121107: [...] The v4l-dvb tree still has its build failure so I used the version from

  1   2   3   4   5   6   7   8   9   10   >