Re: RTL2831U driver updates

2011-10-21 Thread Alistair Buxton
On 9 August 2011 14:22, Alistair Buxton a.j.bux...@gmail.com wrote:

 After a couple of days the card locked up again just like before

I have found something new about this. It turns out my MythTV tuning
was incorrect as some channels had changed frequency due to the
analogue switch-off. The card would freeze up when tuning to one of
these channels. For some reason, this would prevent any further tuning
on it. So after MythTV tried to record from one of these channels, it
would prevent anything from being recorded on any channel.

I have retuned and I haven't experienced any more lock-ups since about 1 week.

-- 
Alistair Buxton
a.j.bux...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-08-09 Thread Alistair Buxton
On 8 August 2011 20:50, Antti Palosaari cr...@iki.fi wrote:
 On 08/06/2011 08:13 AM, Alistair Buxton wrote:
 On 6 August 2011 04:56, Alistair Buxton a.j.bux...@gmail.com wrote:
 With the latest driver my card never gets a signal lock, not even
 once. As before there are no error messages. It does always probe
 correctly now though.

 I tracked this down to:

 http://git.linuxtv.org/anttip/media_tree.git/commit/e5d3e4f27f0cf71c29d12ce39752195d8994dea3

 and to this specific change:

 @@ -459,21 +563,14 @@ static int rtl28xxu_power_ctrl(struct
 dvb_usb_device *d, int onoff)
                 sys0 = sys0  0x0f;
                 sys0 |= 0xe0;
         } else {
 -
 -#if 0 /* keep */
                 /*
                  * FIXME: Use .fe_ioctl_override() to prevent demod
 -                * IOCTLs in case of device is powered off.
 -                *
 -                * For now we cannot power off device because most FE IOCTLs
 -                * can be performed only when device is powered.
 -                * Using IOCTLs when device is powered off will result errors
 -                * because register access to demod fails.
 +                * IOCTLs in case of device is powered off. Or change
 +                * RTL2830 demod not perform requestesd IOCTL  IO when 
 sleep.
                  */
                 gpio = (~0x01); /* GPIO0 = 0 */
                 gpio |= 0x10; /* GPIO4 = 1 */
                 sys0 = sys0  (~0xc0);
 -#endif
         }

         deb_info(%s: WR SYS0=%02x GPIO_OUT_VAL=%02x\n, __func__, sys0, 
 gpio);


 Commenting those three lines makes the driver work again. Don't know
 yet if it will keep working for longer than a couple of days.

 I suspect it is tuner GPIO. It is not clear which GPIO pins are used for
 tuner reset. I should find this out soon. Most likely MXL5005S tuner
 reset have connected to different GPIO than MT2060 design I have.

 Could you test commenting out only gpio change to see if it helps?


After a couple of days the card locked up again just like before. Are
there more gpio bits I need to comment? The LED GPIO is definitely
right. Also, is there a way to check the status of the GPIO from
userspace, without recompiling the module? Like maybe with i2c-dev or
something?


-- 
Alistair Buxton
a.j.bux...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-08-08 Thread Antti Palosaari
On 08/06/2011 08:13 AM, Alistair Buxton wrote:
 On 6 August 2011 04:56, Alistair Buxton a.j.bux...@gmail.com wrote:
 With the latest driver my card never gets a signal lock, not even
 once. As before there are no error messages. It does always probe
 correctly now though.
 
 I tracked this down to:
 
 http://git.linuxtv.org/anttip/media_tree.git/commit/e5d3e4f27f0cf71c29d12ce39752195d8994dea3
 
 and to this specific change:
 
 @@ -459,21 +563,14 @@ static int rtl28xxu_power_ctrl(struct
 dvb_usb_device *d, int onoff)
 sys0 = sys0  0x0f;
 sys0 |= 0xe0;
 } else {
 -
 -#if 0 /* keep */
 /*
  * FIXME: Use .fe_ioctl_override() to prevent demod
 -* IOCTLs in case of device is powered off.
 -*
 -* For now we cannot power off device because most FE IOCTLs
 -* can be performed only when device is powered.
 -* Using IOCTLs when device is powered off will result errors
 -* because register access to demod fails.
 +* IOCTLs in case of device is powered off. Or change
 +* RTL2830 demod not perform requestesd IOCTL  IO when sleep.
  */
 gpio = (~0x01); /* GPIO0 = 0 */
 gpio |= 0x10; /* GPIO4 = 1 */
 sys0 = sys0  (~0xc0);
 -#endif
 }
 
 deb_info(%s: WR SYS0=%02x GPIO_OUT_VAL=%02x\n, __func__, sys0, 
 gpio);
 
 
 Commenting those three lines makes the driver work again. Don't know
 yet if it will keep working for longer than a couple of days.

I suspect it is tuner GPIO. It is not clear which GPIO pins are used for
tuner reset. I should find this out soon. Most likely MXL5005S tuner
reset have connected to different GPIO than MT2060 design I have.

Could you test commenting out only gpio change to see if it helps?

regards
Antti
-- 
http://palosaari.fi/
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-08-05 Thread Alistair Buxton
Hi,

With the latest driver my card never gets a signal lock, not even
once. As before there are no error messages. It does always probe
correctly now though.

On 5 August 2011 00:43, Antti Palosaari cr...@iki.fi wrote:
 Hello,
 I have done some updates. MXL5005S based RTL2831U devices didn't worked
 due to bug. That's main visible change. Secondly I added basic support
 for RTL2832U to rtl28xx driver. And implemented I2C as I see it really
 is, I think it is almost perfect now. It works fine my RTL2832U device
 with stubbed demod and tuner drivers.

-- 
Alistair Buxton
a.j.bux...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-08-05 Thread Alistair Buxton
On 6 August 2011 04:56, Alistair Buxton a.j.bux...@gmail.com wrote:
 Hi,

 With the latest driver my card never gets a signal lock, not even
 once. As before there are no error messages. It does always probe
 correctly now though.

I tracked this down to:

http://git.linuxtv.org/anttip/media_tree.git/commit/e5d3e4f27f0cf71c29d12ce39752195d8994dea3

and to this specific change:

@@ -459,21 +563,14 @@ static int rtl28xxu_power_ctrl(struct
dvb_usb_device *d, int onoff)
sys0 = sys0  0x0f;
sys0 |= 0xe0;
} else {
-
-#if 0 /* keep */
/*
 * FIXME: Use .fe_ioctl_override() to prevent demod
-* IOCTLs in case of device is powered off.
-*
-* For now we cannot power off device because most FE IOCTLs
-* can be performed only when device is powered.
-* Using IOCTLs when device is powered off will result errors
-* because register access to demod fails.
+* IOCTLs in case of device is powered off. Or change
+* RTL2830 demod not perform requestesd IOCTL  IO when sleep.
 */
gpio = (~0x01); /* GPIO0 = 0 */
gpio |= 0x10; /* GPIO4 = 1 */
sys0 = sys0  (~0xc0);
-#endif
}

deb_info(%s: WR SYS0=%02x GPIO_OUT_VAL=%02x\n, __func__, sys0, gpio);


Commenting those three lines makes the driver work again. Don't know
yet if it will keep working for longer than a couple of days.

-- 
Alistair Buxton
a.j.bux...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-08-04 Thread Antti Palosaari
Hello,
I have done some updates. MXL5005S based RTL2831U devices didn't worked
due to bug. That's main visible change. Secondly I added basic support
for RTL2832U to rtl28xx driver. And implemented I2C as I see it really
is, I think it is almost perfect now. It works fine my RTL2832U device
with stubbed demod and tuner drivers.

Next weeks I will hack most likely Anysee, but when I feel bored of
Anysee, I will switch back to rtl28xx driver :p

regards
Antti


On 07/09/2011 06:27 AM, Antti Palosaari wrote:
 Hello
 RTL2831U driver is now available here realtek branch:
 http://git.linuxtv.org/anttip/media_tree.git
 
 From my side it is ready for merge.
 
 RTL2830 DVB-T demod
 ===
 Driver is very limited, it basically just works, no any statistics.
 That's written totally from the scratch.
 
 RTL28XXU DVB USB
 
 I think it is also almost fully written from the scratch, but not sure
 since it have been so lng under the development. At least register
 definitions are from Realtek driver. Jan could you now find out
 copyrights, SOBs, etc. are correct? And how that should be merge...
 
 I wonder Maxim can add support for RTL2832U to RTL28XXU DVB USB. It
 should not be much work. I tested it with my RTL2832U device and some
 minor changes were needed. Remote controller seems to be only which is
 totally different between RTL2831U and RTL2832U (and later).
 
 
 regards
 Antti
 


-- 
http://palosaari.fi/
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-07-08 Thread Antti Palosaari

Hello
RTL2831U driver is now available here realtek branch:
http://git.linuxtv.org/anttip/media_tree.git

From my side it is ready for merge.

RTL2830 DVB-T demod
===
Driver is very limited, it basically just works, no any statistics. 
That's written totally from the scratch.


RTL28XXU DVB USB

I think it is also almost fully written from the scratch, but not sure 
since it have been so lng under the development. At least register 
definitions are from Realtek driver. Jan could you now find out 
copyrights, SOBs, etc. are correct? And how that should be merge...


I wonder Maxim can add support for RTL2832U to RTL28XXU DVB USB. It 
should not be much work. I tested it with my RTL2832U device and some 
minor changes were needed. Remote controller seems to be only which is 
totally different between RTL2831U and RTL2832U (and later).



regards
Antti

--
http://palosaari.fi/
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-22 Thread Steffen Barszus
On Wed, 22 Jun 2011 07:34:31 +0200
Jan Hoogenraad jan-conceptro...@hoogenraad.net wrote:

 Thanks. Do you know more about this subject ?
 
 We do have specs about the chipset, but
 
 http://linuxtv.org/downloads/v4l-dvb-apis/remote_controllers.html#Remote_controllers_Intro
 
 only mentions lirc, not rc-core.
 This is about where my knowledge stops, however.
 
 rc-core is only mentioned shortly in:
 http://linuxtv.org/wiki/index.php/Remote_Controllers

I think/hope Jarod can comment on this - i just know that new remotes
should use rc-core, as this is the new thing for this. I'm no
developer whatsoever :)

 
 Steffen Barszus wrote:
  2011/6/21 Jan Hoogenraadjan-conceptro...@hoogenraad.net:
  and add the IR remote interface, based
  on the LIRC framework.
  It actually should yield little code, and mainly requires a)
  understanding of LIRC and b) comparing code tables to that the
  in-kernel code tables can be re-used.
 
 
  sorry for the noise , but i guess you mean rc-core not Lirc
  --
  To unsubscribe from this list: send the line unsubscribe
  linux-media in the body of a message to majord...@vger.kernel.org
  More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
 
 

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-22 Thread Antti Palosaari

On 06/22/2011 09:13 AM, Steffen Barszus wrote:

On Wed, 22 Jun 2011 07:34:31 +0200
Jan Hoogenraadjan-conceptro...@hoogenraad.net  wrote:


Thanks. Do you know more about this subject ?

We do have specs about the chipset, but

http://linuxtv.org/downloads/v4l-dvb-apis/remote_controllers.html#Remote_controllers_Intro

only mentions lirc, not rc-core.
This is about where my knowledge stops, however.

rc-core is only mentioned shortly in:
http://linuxtv.org/wiki/index.php/Remote_Controllers


I think/hope Jarod can comment on this - i just know that new remotes
should use rc-core, as this is the new thing for this. I'm no
developer whatsoever :)


No problem there, I already know rather well how rc-core is working :) 
Will do that.


RTL2830 demod driver seems to be now rather OK, missing all statistics 
as I planned, but otherwise rather ready. Seems to have some more work 
for getting statistic since looks like it polls huge amount of regs when 
updating those.


I am now finalizing that USB-bridge part. Do you have idea if that 
should be called;


as used chipset names:
dvb_usb_rtl2831u
dvb_usb_rtl2832u
dvb_usb_rtl2836u
dvb_usb_rtl2840u

or just name it as generic:
dvb_usb_rtl28xxu
dvb_usb_rtl2800u

or some other.

rtl28xxu or rtl2800u sounds best for me.

regards
Antti

--
http://palosaari.fi/
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-21 Thread Steffen Barszus
2011/6/21 Jan Hoogenraad jan-conceptro...@hoogenraad.net:
 and add the IR remote interface, based
 on the LIRC framework.
 It actually should yield little code, and mainly requires a) understanding
 of LIRC and b) comparing code tables to that the in-kernel code tables can
 be re-used.


sorry for the noise , but i guess you mean rc-core not Lirc
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-21 Thread Jan Hoogenraad
Can I put this somewhere in the git archive at the linuxtv site, so that 
we can share and have version control ?


Maxim Levitsky wrote:

On Tue, 2011-06-21 at 01:22 +0300, Antti Palosaari wrote:

It is Maxim who have been hacking with RTL2832/RTL2832U lately. But I
think he have given up since no noise anymore.

I have taken now it again up to my desk and have been hacking two days
now. Currently I am working with RTL2830 demod driver, I started it from
scratch. Take sniffs, make scripts to generate code from USB traffic,
copy pasted that to driver skeleton and now I have picture. Just
implement all one-by-one until ready :-) I think I will implement it as
minimum possible, no any signal statistic counters - lets add those
later if someone wants to do that.

USB-bridge part is rather OK as I did earlier and it is working with
RTL2831U and RTL2832U at least. No remote support yet.

I hope someone else would make missing driver for RTL2832U demod still...



Fine!

In about month, after exams, I hope I will work on this to finish at
least RTL2832/FC0012.

For reference, this is the code I did so far.


Best regards,
Maxim Levitsky



--
Jan Hoogenraad
Hoogenraad Interface Services
Postbus 2717
3500 GS Utrecht
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-21 Thread Jan Hoogenraad

Thanks. Do you know more about this subject ?

We do have specs about the chipset, but

http://linuxtv.org/downloads/v4l-dvb-apis/remote_controllers.html#Remote_controllers_Intro

only mentions lirc, not rc-core.
This is about where my knowledge stops, however.

rc-core is only mentioned shortly in:
http://linuxtv.org/wiki/index.php/Remote_Controllers

Steffen Barszus wrote:

2011/6/21 Jan Hoogenraadjan-conceptro...@hoogenraad.net:

and add the IR remote interface, based
on the LIRC framework.
It actually should yield little code, and mainly requires a) understanding
of LIRC and b) comparing code tables to that the in-kernel code tables can
be re-used.



sorry for the noise , but i guess you mean rc-core not Lirc
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html




--
Jan Hoogenraad
Hoogenraad Interface Services
Postbus 2717
3500 GS Utrecht
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-20 Thread poma

Jan Hoogenraad wrote:

Sascha: Thanks for the links

Would you know how to contact poma ?


I know ;)
Really, the right person to contact:
http://article.gmane.org/gmane.linux.drivers.video-input-infrastructure/26131
http://news.gmane.org/find-root.php?message_id=%3c1291503774.1874.90.camel%40maxim%2dlaptop%3e

rgds,
poma

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-20 Thread Antti Palosaari
It is Maxim who have been hacking with RTL2832/RTL2832U lately. But I 
think he have given up since no noise anymore.


I have taken now it again up to my desk and have been hacking two days 
now. Currently I am working with RTL2830 demod driver, I started it from 
scratch. Take sniffs, make scripts to generate code from USB traffic, 
copy pasted that to driver skeleton and now I have picture. Just 
implement all one-by-one until ready :-) I think I will implement it as 
minimum possible, no any signal statistic counters - lets add those 
later if someone wants to do that.


USB-bridge part is rather OK as I did earlier and it is working with 
RTL2831U and RTL2832U at least. No remote support yet.


I hope someone else would make missing driver for RTL2832U demod still...


Antti


--
http://palosaari.fi/
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-20 Thread Jan Hoogenraad

Antti:

You are great !

So as far as I am concerned, it would be great if one of the others 
could use up your work on the USB bridge, and add the IR remote 
interface, based on the LIRC framework.
It actually should yield little code, and mainly requires a) 
understanding of LIRC and b) comparing code tables to that the in-kernel 
code tables can be re-used.


Note that Zdenek Styblik seems to have received updates from Realtek 
THIS month

http://wiki.zeratul.org/doku.php?id=linux:v4l:realtek:start

He has posted a Ver 2.2.0 of the driver at:
http://www.turnovfree.net/~stybla/linux/v4l-dvb/lv5tdlx/

It supports the RTL2832U and RTL2836 and way more tuners (MT2266 FC2580 
TUA9001 and MXL5007T E4000 FC0012  tda18272 fc0013)


However, the code is not split up.


Antti Palosaari wrote:

It is Maxim who have been hacking with RTL2832/RTL2832U lately. But I
think he have given up since no noise anymore.

I have taken now it again up to my desk and have been hacking two days
now. Currently I am working with RTL2830 demod driver, I started it from
scratch. Take sniffs, make scripts to generate code from USB traffic,
copy pasted that to driver skeleton and now I have picture. Just
implement all one-by-one until ready :-) I think I will implement it as
minimum possible, no any signal statistic counters - lets add those
later if someone wants to do that.

USB-bridge part is rather OK as I did earlier and it is working with
RTL2831U and RTL2832U at least. No remote support yet.

I hope someone else would make missing driver for RTL2832U demod still...


Antti





--
Jan Hoogenraad
Hoogenraad Interface Services
Postbus 2717
3500 GS Utrecht
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-17 Thread Sascha Wüstemann
Jan Hoogenraad wrote:
 Sascha: Thanks for the links
 
 Would you know how to contact poma ?
 http://www.spinics.net/lists/linux-media/msg24890.html
 
 I will be getting more info from Realtek soon.
 I did not realize that they were putting out updated drivers.
 
 Once the status becomes more clear, I'll update
 http://www.linuxtv.org/wiki/index.php/Realtek_RTL2831U
 


The mailinglist archive where poma had written is new to me, no sorry.
Zdenek Stybla hosts the website he advised to me.

When I contacted Zdenek he made contact to a guy from realtek which in
return sent us their (?) new drivers  -  you should contact Zdenek.

I don't work on the rtl2831 sources I'd like to use them :-)

I am looking forward to have current sources at v4l or at least updated
information at the info page at linuxtv.org.

Greetings from Braunschweig, Germany.
Sascha
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: RTL2831U driver updates

2011-06-17 Thread Thomas Holzeisen
Hi again,

i managed to merge the driver with a media_build snapshot by hand, and managed 
to get it loaded
without errors. But now where I looked more closely to the files, I noticed 
something.

The driver refered mentions RTL2832u and some following versions, but it _dont_ 
mention RTL2831u
at all. Also the card I got contains the tuners mxl5005, mt2060 and qt1010, 
while this driver
contains files for mxl5007 and mt2063.

Teach me wrong, but it looks like the RTL2381u had been forgotten when this 
driver got made ;-)

Greeting,
Thomas



Sascha Wüstemann wrote:
 Jan Hoogenraad wrote:
 Sascha: Thanks for the links

 Would you know how to contact poma ?
 http://www.spinics.net/lists/linux-media/msg24890.html

 I will be getting more info from Realtek soon.
 I did not realize that they were putting out updated drivers.

 Once the status becomes more clear, I'll update
 http://www.linuxtv.org/wiki/index.php/Realtek_RTL2831U

 
 
 The mailinglist archive where poma had written is new to me, no sorry.
 Zdenek Stybla hosts the website he advised to me.
 
 When I contacted Zdenek he made contact to a guy from realtek which in
 return sent us their (?) new drivers  -  you should contact Zdenek.
 
 I don't work on the rtl2831 sources I'd like to use them :-)
 
 I am looking forward to have current sources at v4l or at least updated
 information at the info page at linuxtv.org.
 
 Greetings from Braunschweig, Germany.
 Sascha
 --
 To unsubscribe from this list: send the line unsubscribe linux-media in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RTL2831U driver updates

2011-06-16 Thread Jan Hoogenraad

Sascha: Thanks for the links

Would you know how to contact poma ?
http://www.spinics.net/lists/linux-media/msg24890.html

I will be getting more info from Realtek soon.
I did not realize that they were putting out updated drivers.

Once the status becomes more clear, I'll update
http://www.linuxtv.org/wiki/index.php/Realtek_RTL2831U

Sascha Wüstemann wrote:

Thomas Holzeisen wrote:

Hi there,

I tried to get an RTL2831U dvb-t usb-stick running with a more recent kernel 
(2.6.38) and failed.

The hg respository ~jhoogenraad/rtl2831-r2 aborts on countless drivers, the rc 
coding seem have to
changed a lot since it got touched the last time.

The hg respository ~anttip/rtl2831u wont compile as well, since its even older.

The recent git respositories for media_tree and anttip dont contain drivers for 
the rtl2831u.

Has this device been abandoned, or is anyone working on it?

greetings,
Thomas


There are still people working on it and there is new sources, e.g. look at
http://www.spinics.net/lists/linux-media/msg24890.html
at the very bottom. Worked like a charm at my system with kernel 2.6.39.

I think, there will be announcements later at
http://wiki.zeratul.org/doku.php?id=linux:v4l:realtek:start

Greetings from Braunschweig, Germany.
Sascha
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html




--
Jan Hoogenraad
Hoogenraad Interface Services
Postbus 2717
3500 GS Utrecht
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html