<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mediapointer-dvb-s2/linux/drivers/media/video/cx88/Kconfig, branch master</title>
<subtitle>Mediapointer DVB-S2 driver
</subtitle>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/'/>
<entry>
<title>Kconfig: replace all occurrences of CUSTOMIZE to CUSTOMISE</title>
<updated>2009-03-20T22:33:59+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2009-03-20T22:33:59+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=a728c348653d59c62786e26db627004f9b402519'/>
<id>a728c348653d59c62786e26db627004f9b402519</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

There are several Kconfig items using CUSTOMIZE. Yet, most use the English
writing CUSTOMISE. This generates lots of trouble, because people sometimes type
the Kbuild item different.

Let's standardise every occurrence using the same syntax.

The changes were generated by this small shell script:

for i in `find linux -type f`; do sed s,CUSTOMIZE,CUSTOMISE,g $i &gt;/tmp/a &amp;&amp; mv /tmp/a $i; done

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

There are several Kconfig items using CUSTOMIZE. Yet, most use the English
writing CUSTOMISE. This generates lots of trouble, because people sometimes type
the Kbuild item different.

Let's standardise every occurrence using the same syntax.

The changes were generated by this small shell script:

for i in `find linux -type f`; do sed s,CUSTOMIZE,CUSTOMISE,g $i &gt;/tmp/a &amp;&amp; mv /tmp/a $i; done

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cx88: Fix Kconfig MPEG dependencies</title>
<updated>2009-01-07T02:53:22+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2009-01-07T02:53:22+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=42e18907f40429416ed11adb3b264a0a39467599'/>
<id>42e18907f40429416ed11adb3b264a0a39467599</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As Michael Krufky &lt;mkrufky@linuxtv.org&gt; pointed, the dependencies for cx8802
are wrong, since the module is needed when either cx88-dvb or cx88-blackbird
is compiled.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As Michael Krufky &lt;mkrufky@linuxtv.org&gt; pointed, the dependencies for cx8802
are wrong, since the module is needed when either cx88-dvb or cx88-blackbird
is compiled.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cx88: Fix some Kbuild troubles</title>
<updated>2009-01-06T19:06:07+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2009-01-06T19:06:07+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=cc6ff0bdf62d7f27a9f7bcb2c5a33a7ded634fbd'/>
<id>cc6ff0bdf62d7f27a9f7bcb2c5a33a7ded634fbd</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As Randy Dunlap &lt;randy.dunlap@oracle.com&gt; reported, cx88 has some compilation issues:

drivers/built-in.o: In function `cx88_call_i2c_clients':
(.text+0x20af17): undefined reference to `videobuf_dvb_get_frontend'
drivers/built-in.o: In function `cx8802_probe':
cx88-mpeg.c:(.devinit.text+0x268c4): undefined reference to `videobuf_dvb_alloc_frontend'
cx88-mpeg.c:(.devinit.text+0x268ea): undefined reference to `videobuf_dvb_dealloc_frontends'

With those configs:

CONFIG_VIDEO_CX88=y
CONFIG_VIDEO_CX88_BLACKBIRD=y
CONFIG_VIDEO_CX88_DVB=m
CONFIG_DVB_CORE=m

After carefully examining the code, with the current code, several cx88 drivers
(cx8800, cx8802, cx88_dvb and cx88_blackbird) should be compiled as a module,
if one of them is marked as such. Just fixing Kconfig could create a very complex
set of rules. Also, this hides a problem with the current approach where the dvb
functionality weren't confined inside dvb module.

What happens is that:
	- cx88-i2c (part of cx8800) has some special rules if DVB;
	- cx88-mpeg (cx8802 module) has also part of DVB init code;
	- cx88-dvb has the rest of the dvb code;
	- cx88-blackbird can be used with cx88-mpeg, having cx88-dvb or not.

So, instead of doing some tricks at Kconfig and wait for a next breakage,
this patch moves the dvb code inside cx88-i2c and cx88-mpeg into cx88-dvb.

Another problem is that cx8802 were being compiled, even without cx88-dvb
and cx88-blackbird modules.

While on this code, let's fix also a reported problem:
http://www.linuxtv.org/pipermail/linux-dvb/2009-January/031225.html

A solution for the issue were proposed here:
http://www.mail-archive.com/linux-media@vger.kernel.org/msg00021.html

Thanks to Randy, Andy, Gregoire and Thomas for helping us to detect
and solve the issues.

Priority: normal

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As Randy Dunlap &lt;randy.dunlap@oracle.com&gt; reported, cx88 has some compilation issues:

drivers/built-in.o: In function `cx88_call_i2c_clients':
(.text+0x20af17): undefined reference to `videobuf_dvb_get_frontend'
drivers/built-in.o: In function `cx8802_probe':
cx88-mpeg.c:(.devinit.text+0x268c4): undefined reference to `videobuf_dvb_alloc_frontend'
cx88-mpeg.c:(.devinit.text+0x268ea): undefined reference to `videobuf_dvb_dealloc_frontends'

With those configs:

CONFIG_VIDEO_CX88=y
CONFIG_VIDEO_CX88_BLACKBIRD=y
CONFIG_VIDEO_CX88_DVB=m
CONFIG_DVB_CORE=m

After carefully examining the code, with the current code, several cx88 drivers
(cx8800, cx8802, cx88_dvb and cx88_blackbird) should be compiled as a module,
if one of them is marked as such. Just fixing Kconfig could create a very complex
set of rules. Also, this hides a problem with the current approach where the dvb
functionality weren't confined inside dvb module.

What happens is that:
	- cx88-i2c (part of cx8800) has some special rules if DVB;
	- cx88-mpeg (cx8802 module) has also part of DVB init code;
	- cx88-dvb has the rest of the dvb code;
	- cx88-blackbird can be used with cx88-mpeg, having cx88-dvb or not.

So, instead of doing some tricks at Kconfig and wait for a next breakage,
this patch moves the dvb code inside cx88-i2c and cx88-mpeg into cx88-dvb.

Another problem is that cx8802 were being compiled, even without cx88-dvb
and cx88-blackbird modules.

While on this code, let's fix also a reported problem:
http://www.linuxtv.org/pipermail/linux-dvb/2009-January/031225.html

A solution for the issue were proposed here:
http://www.mail-archive.com/linux-media@vger.kernel.org/msg00021.html

Thanks to Randy, Andy, Gregoire and Thomas for helping us to detect
and solve the issues.

Priority: normal

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert changeset 9886</title>
<updated>2008-12-16T18:25:46+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2008-12-16T18:25:46+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=1e115775994e75b023a2b0a53fecb75bb949cc95'/>
<id>1e115775994e75b023a2b0a53fecb75bb949cc95</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

Changeset 9886 were applied by mistake, reverting changeset 9885, that
got a wrong comment. Let's revert it.

Priority: normal

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

Changeset 9886 were applied by mistake, reverting changeset 9885, that
got a wrong comment. Let's revert it.

Priority: normal

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for ST STV0288 demodulator and cards with it.</title>
<updated>2008-09-23T18:43:57+00:00</updated>
<author>
<name>Igor M. Liplianin</name>
<email>liplianin@me.by</email>
</author>
<published>2008-09-23T18:43:57+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=60068c572f087679b3b93155ec10c660ea932da8'/>
<id>60068c572f087679b3b93155ec10c660ea932da8</id>
<content type='text'>
From: Georg Acher &lt;acher@baycom.de&gt;
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for ST STV0288 demodulator and cards with it,
such as TeVii S420.

Signed-off by: Georg Acher &lt;acher@baycom.de&gt;
Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Georg Acher &lt;acher@baycom.de&gt;
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for ST STV0288 demodulator and cards with it,
such as TeVii S420.

Signed-off by: Georg Acher &lt;acher@baycom.de&gt;
Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>S2API: Add Kconf dependency</title>
<updated>2008-09-22T04:45:01+00:00</updated>
<author>
<name>Steven Toth</name>
<email>stoth@linuxtv.org</email>
</author>
<published>2008-09-22T04:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=fa2f07623c36247d983eaa8dde37921efd839e13'/>
<id>fa2f07623c36247d983eaa8dde37921efd839e13</id>
<content type='text'>
From: Steven Toth &lt;stoth@linuxtv.org&gt;

Patch provided by Darron Broad

Priority: normal

Signed-off-by: Steven Toth &lt;stoth@linuxtv.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Steven Toth &lt;stoth@linuxtv.org&gt;

Patch provided by Darron Broad

Priority: normal

Signed-off-by: Steven Toth &lt;stoth@linuxtv.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>remove select's of FW_LOADER</title>
<updated>2008-07-27T13:04:55+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@infradead.org</email>
</author>
<published>2008-07-27T13:04:55+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=b758fc01ef8bdaa9a7380ef01c1e27cf6a96e256'/>
<id>b758fc01ef8bdaa9a7380ef01c1e27cf6a96e256</id>
<content type='text'>
From: Adrian Bunk &lt;bunk@kernel.org&gt;

After commit d9b19199e4894089456aaad295023263b5225c1a
(always enable FW_LOADER unless EMBEDDED=y) we can remove
the FW_LOADER select's and corresponding dependencies
on HOTPLUG.

Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Adrian Bunk &lt;bunk@kernel.org&gt;

After commit d9b19199e4894089456aaad295023263b5225c1a
(always enable FW_LOADER unless EMBEDDED=y) we can remove
the FW_LOADER select's and corresponding dependencies
on HOTPLUG.

Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cx88: fix Kconfig depencencies for FW_LOADER</title>
<updated>2008-05-06T13:46:12+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@infradead.org</email>
</author>
<published>2008-05-06T13:46:12+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=29ec5382e6adf0ae633cc7d1b0b1bbc030446aa0'/>
<id>29ec5382e6adf0ae633cc7d1b0b1bbc030446aa0</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

cx88 doesn't need support for FW_LOADER. Instead, this is required only for
cx88-blackbird.

Also, cx88-blackbird depends on HOTPLUG, due to FW_LOADER dependency.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

cx88 doesn't need support for FW_LOADER. Instead, this is required only for
cx88-blackbird.

Also, cx88-blackbird depends on HOTPLUG, due to FW_LOADER dependency.

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Re-creates VIDEO_TUNER</title>
<updated>2008-05-06T12:35:58+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@infradead.org</email>
</author>
<published>2008-05-06T12:35:58+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=9493be0fed378b8b160c7df7bffa6aeb66c65cf8'/>
<id>9493be0fed378b8b160c7df7bffa6aeb66c65cf8</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

VIDEO_TUNER is responsible for compilation of tuners.ko module. This were the
previous behaviour before the creation of MEDIA_TUNER.

Before this patch, tuner.ko were created even for drivers that don't need a
tuner (like webcam drivers).

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

VIDEO_TUNER is responsible for compilation of tuners.ko module. This were the
previous behaviour before the creation of MEDIA_TUNER.

Before this patch, tuner.ko were created even for drivers that don't need a
tuner (like webcam drivers).

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the same name convention for all tuners under common/tuners</title>
<updated>2008-04-30T03:09:25+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@infradead.org</email>
</author>
<published>2008-04-30T03:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=c8566d4e92c2279fd31da9154b12034dd1d1984d'/>
<id>c8566d4e92c2279fd31da9154b12034dd1d1984d</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

kernel-sync:

Auto generated by this script:
for i in `find drivers/media/ -name Kconfig`; do
  cat $i                                        |\
  sed s,DVB_CORE_ATTACH,MEDIA_ATTACH,g          |\
  sed s,VIDEO_TUNER,MEDIA_TUNER,g               |\
  sed s,TUNER_SIMPLE,MEDIA_TUNER_SIMPLE,g       |\
  sed s,TUNER_TDA8290,MEDIA_TUNER_TDA8290,g     |\
  sed s,DVB_TDA827X,MEDIA_TUNER_TDA827X,g       |\
  sed s,DVB_TDA18271,MEDIA_TUNER_TDA18271,g     |\
  sed s,TUNER_TDA9887,MEDIA_TUNER_TDA9887,g     |\
  sed s,TUNER_TEA5761,MEDIA_TUNER_TEA5761,g     |\
  sed s,TUNER_TEA5767,MEDIA_TUNER_TEA5767,g     |\
  sed s,TUNER_MT20XX,MEDIA_TUNER_MT20XX,g       |\
  sed s,DVB_TUNER_MT2060,MEDIA_TUNER_MT2060,g   |\
  sed s,DVB_TUNER_MT2266,MEDIA_TUNER_MT2266,g   |\
  sed s,DVB_TUNER_MT2131,MEDIA_TUNER_MT2131,g   |\
  sed s,DVB_TUNER_QT1010,MEDIA_TUNER_QT1010,g   |\
  sed s,TUNER_XC2028,MEDIA_TUNER_XC2028,g       |\
  sed s,DVB_TUNER_XC5000,MEDIA_TUNER_XC5000,g   &gt;/tmp/temp_mv$$
  mv /tmp/temp_mv$$ $i
done

for i in `find drivers/media/ -type f`; do
  cat $i                                                        |\
  sed s,CONFIG_DVB_CORE_ATTACH,CONFIG_MEDIA_ATTACH,g            |\
  sed s,CONFIG_VIDEO_TUNER,CONFIG_MEDIA_TUNER,g                 |\
  sed s,CONFIG_TUNER_SIMPLE,CONFIG_MEDIA_TUNER_SIMPLE,g         |\
  sed s,CONFIG_TUNER_TDA8290,CONFIG_MEDIA_TUNER_TDA8290,g       |\
  sed s,CONFIG_DVB_TDA827X,CONFIG_MEDIA_TUNER_TDA827X,g         |\
  sed s,CONFIG_DVB_TDA18271,CONFIG_MEDIA_TUNER_TDA18271,g       |\
  sed s,CONFIG_TUNER_TDA9887,CONFIG_MEDIA_TUNER_TDA9887,g       |\
  sed s,CONFIG_TUNER_TEA5761,CONFIG_MEDIA_TUNER_TEA5761,g       |\
  sed s,CONFIG_TUNER_TEA5767,CONFIG_MEDIA_TUNER_TEA5767,g       |\
  sed s,CONFIG_TUNER_MT20XX,CONFIG_MEDIA_TUNER_MT20XX,g         |\
  sed s,CONFIG_DVB_TUNER_MT2060,CONFIG_MEDIA_TUNER_MT2060,g     |\
  sed s,CONFIG_DVB_TUNER_MT2266,CONFIG_MEDIA_TUNER_MT2266,g     |\
  sed s,CONFIG_DVB_TUNER_MT2131,CONFIG_MEDIA_TUNER_MT2131,g     |\
  sed s,CONFIG_DVB_TUNER_QT1010,CONFIG_MEDIA_TUNER_QT1010,g     |\
  sed s,CONFIG_TUNER_XC2028,CONFIG_MEDIA_TUNER_XC2028,g         |\
  sed s,CONFIG_DVB_TUNER_XC5000,CONFIG_MEDIA_TUNER_XC5000,g     &gt;/tmp/temp_mv$$
  mv /tmp/temp_mv$$ $i
done

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;

kernel-sync:

Auto generated by this script:
for i in `find drivers/media/ -name Kconfig`; do
  cat $i                                        |\
  sed s,DVB_CORE_ATTACH,MEDIA_ATTACH,g          |\
  sed s,VIDEO_TUNER,MEDIA_TUNER,g               |\
  sed s,TUNER_SIMPLE,MEDIA_TUNER_SIMPLE,g       |\
  sed s,TUNER_TDA8290,MEDIA_TUNER_TDA8290,g     |\
  sed s,DVB_TDA827X,MEDIA_TUNER_TDA827X,g       |\
  sed s,DVB_TDA18271,MEDIA_TUNER_TDA18271,g     |\
  sed s,TUNER_TDA9887,MEDIA_TUNER_TDA9887,g     |\
  sed s,TUNER_TEA5761,MEDIA_TUNER_TEA5761,g     |\
  sed s,TUNER_TEA5767,MEDIA_TUNER_TEA5767,g     |\
  sed s,TUNER_MT20XX,MEDIA_TUNER_MT20XX,g       |\
  sed s,DVB_TUNER_MT2060,MEDIA_TUNER_MT2060,g   |\
  sed s,DVB_TUNER_MT2266,MEDIA_TUNER_MT2266,g   |\
  sed s,DVB_TUNER_MT2131,MEDIA_TUNER_MT2131,g   |\
  sed s,DVB_TUNER_QT1010,MEDIA_TUNER_QT1010,g   |\
  sed s,TUNER_XC2028,MEDIA_TUNER_XC2028,g       |\
  sed s,DVB_TUNER_XC5000,MEDIA_TUNER_XC5000,g   &gt;/tmp/temp_mv$$
  mv /tmp/temp_mv$$ $i
done

for i in `find drivers/media/ -type f`; do
  cat $i                                                        |\
  sed s,CONFIG_DVB_CORE_ATTACH,CONFIG_MEDIA_ATTACH,g            |\
  sed s,CONFIG_VIDEO_TUNER,CONFIG_MEDIA_TUNER,g                 |\
  sed s,CONFIG_TUNER_SIMPLE,CONFIG_MEDIA_TUNER_SIMPLE,g         |\
  sed s,CONFIG_TUNER_TDA8290,CONFIG_MEDIA_TUNER_TDA8290,g       |\
  sed s,CONFIG_DVB_TDA827X,CONFIG_MEDIA_TUNER_TDA827X,g         |\
  sed s,CONFIG_DVB_TDA18271,CONFIG_MEDIA_TUNER_TDA18271,g       |\
  sed s,CONFIG_TUNER_TDA9887,CONFIG_MEDIA_TUNER_TDA9887,g       |\
  sed s,CONFIG_TUNER_TEA5761,CONFIG_MEDIA_TUNER_TEA5761,g       |\
  sed s,CONFIG_TUNER_TEA5767,CONFIG_MEDIA_TUNER_TEA5767,g       |\
  sed s,CONFIG_TUNER_MT20XX,CONFIG_MEDIA_TUNER_MT20XX,g         |\
  sed s,CONFIG_DVB_TUNER_MT2060,CONFIG_MEDIA_TUNER_MT2060,g     |\
  sed s,CONFIG_DVB_TUNER_MT2266,CONFIG_MEDIA_TUNER_MT2266,g     |\
  sed s,CONFIG_DVB_TUNER_MT2131,CONFIG_MEDIA_TUNER_MT2131,g     |\
  sed s,CONFIG_DVB_TUNER_QT1010,CONFIG_MEDIA_TUNER_QT1010,g     |\
  sed s,CONFIG_TUNER_XC2028,CONFIG_MEDIA_TUNER_XC2028,g         |\
  sed s,CONFIG_DVB_TUNER_XC5000,CONFIG_MEDIA_TUNER_XC5000,g     &gt;/tmp/temp_mv$$
  mv /tmp/temp_mv$$ $i
done

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@infradead.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
