Re: [PATCHv4 0 of 8] FM Transmitter (si4713) and another changes

2009-05-28 Thread Eduardo Valentin
On Fri, May 29, 2009 at 08:03:59AM +0200, Valentin Eduardo (Nokia-D/Helsinki) wrote: > Hi Douglas, > > On Fri, May 29, 2009 at 07:36:20AM +0200, ext Douglas Schilling Landgraf > wrote: > > Hello Eduardo, > > > > On Wed, 27 May 2009 12:35:47 +0300 > > Eduardo Valentin wrote: > > > > > Hello al

Re: [PATCHv4 0 of 8] FM Transmitter (si4713) and another changes

2009-05-28 Thread Eduardo Valentin
Hi Douglas, On Fri, May 29, 2009 at 07:36:20AM +0200, ext Douglas Schilling Landgraf wrote: > Hello Eduardo, > > On Wed, 27 May 2009 12:35:47 +0300 > Eduardo Valentin wrote: > > > Hello all, > > > > I'm resending the FM transmitter driver and the proposed changes in > > v4l2 api files in ord

Re: [PATCHv4 0 of 8] FM Transmitter (si4713) and another changes

2009-05-28 Thread Douglas Schilling Landgraf
Hello Eduardo, On Wed, 27 May 2009 12:35:47 +0300 Eduardo Valentin wrote: > Hello all, > > I'm resending the FM transmitter driver and the proposed changes in > v4l2 api files in order to cover the fmtx extended controls class. > > It is basically the same series of version #3. However I r

Email Directory of small businesses for the United States

2009-05-28 Thread Phillip R Stark
Fields such as contact names and positions, complete decription of the business, number of employees, years in business and 10 more fields All data is verified, optin and there are 2 million emails in total This week only you pay only: $299 - this offer is only valid until May 30 2009 send us

[PATCH] cx18: Use do_div for 64-bit division to fix 32-bit kernels

2009-05-28 Thread David Ward
Use the do_div macro for 64-bit division. Otherwise, the module will reference __udivdi3 under 32-bit kernels, which is not allowed in kernel space. Follows style used in cx88 module. Signed-off-by: David Ward diff -r 65ec132f20df -r 91b89f13adb7 linux/drivers/media/video/cx18/cx18-av-core

Re: [PATCH][RESEND] Use correct sampling rate for TV/FM radio

2009-05-28 Thread hermann pitton
Hi, just some short notes. Am Donnerstag, den 28.05.2009, 18:47 +0200 schrieb Oldrich Jedlicka: > On Wednesday 27 of May 2009 at 21:05:35, Mauro Carvalho Chehab wrote: > > Em Sat, 23 May 2009 19:09:12 +0200 > > > > Oldrich Jedlicka escreveu: > > > On Tuesday 19 of May 2009 at 19:54:18, Oldrich J

Re: About s_stream in v4l2-subdev

2009-05-28 Thread Dongsoo, Nathaniel Kim
Thank you Hans, Regards, Nate On Fri, May 29, 2009 at 6:21 AM, Hans Verkuil wrote: > On Thursday 28 May 2009 13:20:15 Dongsoo, Nathaniel Kim wrote: >> Hello everyone, >> >> I'm doing my driver job with kernel 2.6.30-rc6, trying to figure out >> how to convert my old drivers to v4l2-subdev framew

Re: "Unknown symbol __udivdi3" with rev >= 11873

2009-05-28 Thread Michael Krufky
On Thu, May 28, 2009 at 5:43 PM, David Ward wrote: > On 05/28/2009 03:12 PM, Michael Krufky wrote: >> >> On Thu, May 28, 2009 at 12:05 AM, David Ward >>  wrote: >> >>> >>> Revision 11873 (committed earlier today) has broken the cx18 driver for >>> me, >>> with the line "cx18: Unknown symbol __udiv

Re: "Unknown symbol __udivdi3" with rev >= 11873

2009-05-28 Thread David Ward
On 05/28/2009 03:12 PM, Michael Krufky wrote: On Thu, May 28, 2009 at 12:05 AM, David Ward wrote: Revision 11873 (committed earlier today) has broken the cx18 driver for me, with the line "cx18: Unknown symbol __udivdi3" appearing in dmesg when the module tries to load. I'm using Ubuntu 8.

Re: [PATCH 3/9] dm355 ccdc module for vpfe capture driver

2009-05-28 Thread Hans Verkuil
On Thursday 28 May 2009 15:18:17 Laurent Pinchart wrote: > Hi, > > most comments here apply to the DM6446 CCDC module as well. Generic > comments apply throughout the source code. > > Hans, I'd appreciate if you could review my comments, as some of them > might made according to personal preference

C-1501 and 309/321Mhz transponders

2009-05-28 Thread Christian Lyra
Hi there, I guess I´m about to have every TDA10023 based card, just to find that none of them works right with my provider... I tried with a C-1501 hoping that the new patch (from the thread "Locking issues on 388Mhz") could also solve my problem. Well... it didnt. Using the scan utility to s

Re: About s_stream in v4l2-subdev

2009-05-28 Thread Hans Verkuil
On Thursday 28 May 2009 13:20:15 Dongsoo, Nathaniel Kim wrote: > Hello everyone, > > I'm doing my driver job with kernel 2.6.30-rc6, trying to figure out > how to convert my old drivers to v4l2-subdev framework. Looking into > the v4l2-subdev.h file an interesting API popped up and can't find any >

[patch review 4/4] dsbr100: change radio->muted to radio->status, update suspend/resume

2009-05-28 Thread Alexey Klimov
Patch renames radio->muted to radio->status, add defines for that variable, and fixes suspend/resume procedure. Radio->status set to STOPPED in usb_dsbr100_probe because of removing open call. Also, patch increases driver version. Signed-off-by: Alexey Klimov -- diff -r 8046021e508e linux/driver

[patch review 3/4] dsbr100: no need to pass curfreq value to dsbr100_setfreq()

2009-05-28 Thread Alexey Klimov
Small cleanup of dsbr100_setfreq(). No need to pass radio->curfreq value to this function. Signed-off-by: Alexey Klimov -- diff -r d7322837a62c linux/drivers/media/radio/dsbr100.c --- a/linux/drivers/media/radio/dsbr100.c Tue May 19 15:18:56 2009 +0400 +++ b/linux/drivers/media/radio/dsbr1

[patch review 2/4] dsbr100: remove usb_dsbr100_open/close calls

2009-05-28 Thread Alexey Klimov
Patch removes usb_dsbr100_open and usb_dsbr100_close calls. 1. No need to start, set frequency, adjust parameters in open call. 2. This patch tackles issue with lock/unlock_kernel() in open call. 3. With this patch feature "Mute on exit?" in gnomeradio works. Signed-off-by: Alexey Klimov -- diff

[patch review 1/4] dsbr100: remove radio->users counter

2009-05-28 Thread Alexey Klimov
Patch removes radio->users counter because it is not in use. Signed-off-by: Alexey Klimov -- diff -r 315bc4b65b4f linux/drivers/media/radio/dsbr100.c --- a/linux/drivers/media/radio/dsbr100.c Sun May 17 12:28:55 2009 + +++ b/linux/drivers/media/radio/dsbr100.c Tue May 19 15:05:02

[patch 0/4] Patches for dsbr100 radio

2009-05-28 Thread Alexey Klimov
There was discussion on maillist about lock/unlock_kernel, about open/close functions and about radio->users counter. So, there are patches arised from that discussion. There is suspend/resume procedure fix in patch 4/4. Here is description of patches: [1/4] dsbr100: remove radio->users counter

Re: [PATCH] Leadtek WinFast DTV-1800H support

2009-05-28 Thread hermann pitton
Hi Miroslav, Am Donnerstag, den 28.05.2009, 18:44 + schrieb Miroslav Šustek: > Any problem with this patch? > I'm trying to get WinFast DTV-1800H support into repository for seven months. > (see: > http://article.gmane.org/gmane.linux.drivers.video-input-infrastructure/1125/match=1800h > ) >

Re: "Unknown symbol __udivdi3" with rev >= 11873

2009-05-28 Thread Michael Krufky
On Thu, May 28, 2009 at 12:05 AM, David Ward wrote: > Revision 11873 (committed earlier today) has broken the cx18 driver for me, > with the line "cx18: Unknown symbol __udivdi3" appearing in dmesg when the > module tries to load.  I'm using Ubuntu 8.04.2 which uses kernel 2.6.24 and > gcc 4.2.4.

Re: [PATCH] Leadtek WinFast DTV-1800H support

2009-05-28 Thread Miroslav Šustek
Any problem with this patch? I'm trying to get WinFast DTV-1800H support into repository for seven months. (see: http://article.gmane.org/gmane.linux.drivers.video-input-infrastructure/1125/match=1800h ) -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a me

Re: Licensing question regarding SN9C2028 decompression (fwd)

2009-05-28 Thread Hans de Goede
On 05/28/2009 04:34 PM, Theodore Kilgore wrote: On Thu, 28 May 2009, Hans de Goede wrote: On 05/27/2009 11:43 PM, Theodore Kilgore wrote: Hans, Here is the answer which I got about the question of GPL->LGPL licensing in regard to the sn9c2028 decompression code. Hmm, Given that you

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: ERRORS

2009-05-28 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:Thu May 28 19:00:04 CEST 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 11876:65ec132f20df gcc version: gcc

Re: [PATCH][RESEND] Use correct sampling rate for TV/FM radio

2009-05-28 Thread Oldrich Jedlicka
On Wednesday 27 of May 2009 at 21:05:35, Mauro Carvalho Chehab wrote: > Em Sat, 23 May 2009 19:09:12 +0200 > > Oldrich Jedlicka escreveu: > > On Tuesday 19 of May 2009 at 19:54:18, Oldrich Jedlicka wrote: > > > On Tuesday 14 of April 2009 at 20:48:14, Oldrich Jedlicka wrote: > > > > Here is the fi

[PULL] http://linuxtv.org/hg/~dougsland/v4l-dvb

2009-05-28 Thread Douglas Schilling Landgraf
Hello Mauro, Please pull from http://linuxtv.org/hg/~dougsland/v4l-dvb for the following: - em28xx: Fix for Slow Memory Leak - bt8xx: remove always false if Thanks, Douglas -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel

Re: Licensing question regarding SN9C2028 decompression (fwd)

2009-05-28 Thread Theodore Kilgore
On Thu, 28 May 2009, Hans de Goede wrote: On 05/27/2009 11:43 PM, Theodore Kilgore wrote: Hans, Here is the answer which I got about the question of GPL->LGPL licensing in regard to the sn9c2028 decompression code. Hmm, Given that you did have contact with the original author years ag

DVB-S2 8PSK tuning problem

2009-05-28 Thread Chris
Hello to all, i'm using two DVB-S2 Cards (TT-3200 and KNC TV Station DVB-S2) under openSUSE 11.1 (and the latest sources from linuxtv.org). With the DVB-S and the DVB-S2 (QPSK) all works fine. This mean i can tune the Transponders with szap-s2. But I have problems with DVB-S2 8PSK Transponders. S

About s_stream in v4l2-subdev

2009-05-28 Thread Dongsoo, Nathaniel Kim
Hello everyone, I'm doing my driver job with kernel 2.6.30-rc6, trying to figure out how to convert my old drivers to v4l2-subdev framework. Looking into the v4l2-subdev.h file an interesting API popped up and can't find any precise comment about that. It is "s_stream" in v4l2_subdev_video_ops. I

Re: [PATCH 2/9] ccdc hw device header file for vpfe capture

2009-05-28 Thread Laurent Pinchart
Hi, On Friday 15 May 2009 20:36:19 m-kariche...@ti.com wrote: > From: Muralidharan Karicheri > > CCDC hw device header file > > Adds ccdc hw device header for vpfe capture driver > > This has comments incorporated from previous review. > > Reviewed By "Hans Verkuil". > Reviewed By "Laurent Pincha

Re: [ivtv-devel] tveeprom cannot autodetect tuner! (FQ1216LME MK5)

2009-05-28 Thread hermann pitton
Hi, Am Mittwoch, den 27.05.2009, 08:09 +0200 schrieb Hans Verkuil: > On Wednesday 27 May 2009 05:28:19 Ant wrote: > > Andy Walls wrote: > > > Hermann, > > > > > > There is an FQ1216LME MK3 data sheet here: > > > > > > http://dl.ivtvdriver.org/datasheets/tuners/FQ1216LME%20Mk3.pdf > > > > > > Is it

Re: Licensing question regarding SN9C2028 decompression (fwd)

2009-05-28 Thread Hans de Goede
On 05/27/2009 11:43 PM, Theodore Kilgore wrote: Hans, Here is the answer which I got about the question of GPL->LGPL licensing in regard to the sn9c2028 decompression code. Hmm, Given that you did have contact with the original author years ago and he also did ok it back then, and that la

Re: [Bugme-new] [Bug 13316] New: task khubd:281 blocked for more than 120 seconds

2009-05-28 Thread Andrew Morton
(switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Fri, 15 May 2009 17:46:49 GMT bugzilla-dae...@bugzilla.kernel.org wrote: > http://bugzilla.kernel.org/show_bug.cgi?id=13316 > >Summary: task khubd:281 blocked for more than 120 seco