<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>6cdc31b2 - media: media/*/Kconfig: sort entries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#6cdc31b2</link>
        <description>media: media/*/Kconfig: sort entriesCurrently, the idems inside media Kconfig are out of order.Sort them using the script below:&lt;script&gt;use strict;use warnings;my %config;my @source;my $out;sub flush_config(){	if (scalar %config) {		for my $c (sort keys %config) {			$out .= $config{$c} . &quot;\n&quot;;		}		%config = ();	}	return if (!scalar @source);	$out .= &quot;\n&quot;;	for my $s (sort @source) {		$out .= $s;	}	$out .= &quot;\n&quot;;	@source = ();}sub sort_kconfig($){	my $fname = shift;	my $cur_config = &quot;&quot;;	@source = ();	$out = &quot;&quot;;	%config = ();	open IN, $fname or die;	while (&lt;IN&gt;) {		if (m/^config\s+(.*)/) {			$cur_config = $1;			$config{$cur_config} .= $_;		} elsif (m/^source\s+(.*)/) {			push @source, $_;		} elsif (m/^\s+/) {			if ($cur_config eq &quot;&quot;) {				$out .= $_;			} else {				$config{$cur_config} .= $_;			}		} else {			flush_config();			$cur_config = &quot;&quot;;			$out .= $_;		}	}	close IN or die;	flush_config();	$out =~ s/\n\n+/\n\n/g;	$out =~ s/\n+$/\n/;	open OUT, &quot;&gt;$fname&quot;;	print OUT $out;	close OUT;}for my $fname(@ARGV) {	sort_kconfig $fname}&lt;/script&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Mon, 14 Mar 2022 10:01:05 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9958d30f - media: Kconfig: cleanup VIDEO_DEV dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#9958d30f</link>
        <description>media: Kconfig: cleanup VIDEO_DEV dependenciesmedia Kconfig has two entries associated to V4L API:VIDEO_DEV and VIDEO_V4L2.On Kernel 2.6.x, there were two V4L APIs, each one with its own flag.VIDEO_DEV were meant to:	1) enable Video4Linux and make its Kconfig options to appear;	2) it makes the Kernel build the V4L core.while VIDEO_V4L2 where used to distinguish between drivers thatimplement the newer API and drivers that implemented the former one.With time, such meaning changed, specially after the removal ofall V4L version 1 drivers.At the current implementation, VIDEO_DEV only does (1): it enablesthe media options related to V4L, that now has:	menu &quot;Video4Linux options&quot;		visible if VIDEO_DEV	source &quot;drivers/media/v4l2-core/Kconfig&quot;	endmenubut it doesn&apos;t affect anymore the V4L core drivers.The rationale is that the V4L2 core has a &quot;soft&quot; dependencyat the I2C bus, and now requires to select a number of otherKconfig options:	config VIDEO_V4L2		tristate		depends on (I2C || I2C=n) &amp;&amp; VIDEO_DEV		select RATIONAL		select VIDEOBUF2_V4L2 if VIDEOBUF2_CORE		default (I2C || I2C=n) &amp;&amp; VIDEO_DEVIn the past, merging them would be tricky, but it seems that it is nowpossible to merge those symbols, in order to simplify V4L dependencies.Let&apos;s keep VIDEO_DEV, as this one is used on some make *defconfigconfigurations.Suggested-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Jacopo Mondi &lt;jacopo@jmondi.org&gt;Reviewed-by: Neil Armstrong &lt;narmstrong@baylibre.com&gt; # for meson-vdec &amp; meson-ge2dAcked-by: Andrzej Pietrasiewicz &lt;andrzejtp2010@gmail.com&gt;Acked-by: &#321;ukasz Stelmach &lt;l.stelmach@samsung.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Sun, 13 Mar 2022 06:25:46 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f35e5231 - media: dvb_usb_pctv452e: use ISL6423 voltage regulator per default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#f35e5231</link>
        <description>media: dvb_usb_pctv452e: use ISL6423 voltage regulator per defaultBoth TT-connect S2-3600 and Pinnacle PCTV Sat HDTV are usingIntersil ISL6423 as LNB voltage regulator. This makesTT-connect S2-3650 CI the only device which uses STM LNBP22 regulatorwhich is currently used for all devices driven by pctv452e driver.This patch fixes this by creating an exception for TT-connect S2-3650 CIto continue to use STM LNBP22 while all others now using correct ISL6423driver which makes DiSEqC/EN50494 comands which involve voltage changesnow working on the other devices (which didn&apos;t work before).Signed-off-by: Alex Bee &lt;knaerzche@gmail.com&gt;Signed-off-by: Sean Young &lt;sean@mess.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Thu, 16 Jul 2020 21:33:03 +0000</pubDate>
        <dc:creator>Alex Bee &lt;knaerzche@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1a55caf0 - media: cxusb-analog: fix V4L2 dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#1a55caf0</link>
        <description>media: cxusb-analog: fix V4L2 dependencyCONFIG_DVB_USB_CXUSB_ANALOG is a &apos;bool&apos; symbol with a dependency on thetristate CONFIG_VIDEO_V4L2, which means it can be enabled as =y evenwhen its dependency is =m. This leads to a link failure:drivers/media/usb/dvb-usb/cxusb-analog.o: In function `cxusb_medion_analog_init&apos;:cxusb-analog.c:(.text+0x92): undefined reference to `v4l2_subdev_call_wrappers&apos;drivers/media/usb/dvb-usb/cxusb-analog.o: In function `cxusb_medion_register_analog&apos;:cxusb-analog.c:(.text+0x466): undefined reference to `v4l2_device_register&apos;cxusb-analog.c:(.text+0x4c3): undefined reference to `v4l2_i2c_new_subdev&apos;cxusb-analog.c:(.text+0x4fb): undefined reference to `v4l2_subdev_call_wrappers&apos;...Change the dependency only disallow the analog portion of the driverin that configuration.Fixes: e478d4054054 (&quot;media: cxusb: add analog mode support for Medion MD95700&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Sean Young &lt;sean@mess.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Thu, 07 May 2020 21:33:14 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>577a7ad3 - media: docs: move driver-specific info to driver-api</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#577a7ad3</link>
        <description>media: docs: move driver-specific info to driver-apiThose documents don&apos;t really describe the driver API.Instead, they contain development-specific information.Yet, as the main index file describes the content of it as:	&quot;how specific kernel subsystems work	 from the point of view of a kernel developer&quot;It seems to be the better fit.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Wed, 04 Mar 2020 14:54:10 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d9d6e1f3 - media: dvb-usb: auto-select CYPRESS_FIRMWARE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#d9d6e1f3</link>
        <description>media: dvb-usb: auto-select CYPRESS_FIRMWAREAt least some of the supported boards by dvb-usbdriver need to load the cypress firmware, so selectit, as otherwise missing dependencies may popup.Also, as the cypress firmware load routines are neededonly by the dvb-usb, dvb-usb-v2 and go7007 drivers, andthose all (now) select it, there&apos;s no need to ask theuser for manually select it.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 09:00:38 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>e478d405 - media: cxusb: add analog mode support for Medion MD95700</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#e478d405</link>
        <description>media: cxusb: add analog mode support for Medion MD95700This patch adds support for analog part of Medion 95700 in the cxusbdriver.What works:* Video capture at various sizes with sequential fields,* Input switching (TV Tuner, Composite, S-Video),* TV and radio tuning,* Video standard switching and auto detection,* Radio mode switching (stereo / mono),* Unplugging while capturing,* DVB / analog coexistence.What does not work yet:* Audio,* VBI,* Picture controls.Signed-off-by: Maciej S. Szmigiero &lt;mail@maciej.szmigiero.name&gt;Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Mon, 29 Apr 2019 16:16:58 +0000</pubDate>
        <dc:creator>Maciej S. Szmigiero &lt;mail@maciej.szmigiero.name&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>b30cc07d - media: dvb-usb/friio, dvb-usb-v2/gl861: decompose friio and merge with gl861</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#b30cc07d</link>
        <description>media: dvb-usb/friio, dvb-usb-v2/gl861: decompose friio and merge with gl861Friio device contains &quot;gl861&quot; bridge and &quot;tc90522&quot; demod,for which the separate drivers are already in the kernel.But friio driver was monolithic and did not use them,practically copying those features.This patch decomposes friio driver into sub drivers andre-uses existing ones, thus reduces some code.It adds some features to gl861,to support the friio-specific init/config of the devicesand implement i2c communications to the tuner via demodwith USB vendor requests.[mchehab+samsung@kernel.org: fix merge conflicts]Signed-off-by: Akihiro Tsukada &lt;tskd08@gmail.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Sun, 10 Jun 2018 14:45:31 +0000</pubDate>
        <dc:creator>Akihiro Tsukada &lt;tskd08@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>670d7adb - media: dvb: point to the location of the old README.dvb-usb file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#670d7adb</link>
        <description>media: dvb: point to the location of the old README.dvb-usb fileThis file got renamed, but the references still point to theold place.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;Acked-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Tue, 08 May 2018 21:29:30 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c4d84547 - media: dib0700: add support for Xbox One Digital TV Tuner</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#c4d84547</link>
        <description>media: dib0700: add support for Xbox One Digital TV TunerXbox One Digital TV Tuner is a low-cost USB 2.0 multistandard TV tuner. It supports DVB-T, DVB-T2 and DVB-C broadcast standards.USB bridge: DibCom 0700CDemodulator: Panasonic MN88472Tuner: TDA18250BHNThe demodulator requires firmware. Download one from here:http://palosaari.fi/linux/v4l-dvb/firmware/MN88472/02/latest/Signed-off-by: Olli Salonen &lt;olli.salonen@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Thu, 23 Nov 2017 08:24:46 +0000</pubDate>
        <dc:creator>Olli Salonen &lt;olli.salonen@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>d0fe85e9 - [media] dvb-usb: avoid link error with dib3000m{b,c|</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#d0fe85e9</link>
        <description>[media] dvb-usb: avoid link error with dib3000m{b,c|Tha ARM randconfig builds came up with another rare build failurefor the dib3000mc driver, when dvb-usb-dibusb-mb is built-in anddib3000mc is a loadable module:ERROR: &quot;dibusb_dib3000mc_frontend_attach&quot; [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!ERROR: &quot;dibusb_dib3000mc_tuner_attach&quot; [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!Apparently this used to be a valid configuration (build-time, notrun-time), but broke as part of a cleanup.I tried reverting the cleanup, but saw that the code was still wrongthen. This version adds a dependency for dib3000mb, to ensure thatdib3000mb does not force the dibusb_dib3000mc_frontend_attach functionto be built-in when dib3000mc is a loadable module.I have also checked the two other files that were changed in the originalcleanup, and found them to be correct in either version, so I do nottouch that part.As this is a rather obscure bug, there is no need for backports.Fixes: 028c70ff42783 (&quot;[media] dvb-usb/dvb-usb-v2: use IS_ENABLED&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Tue, 19 Jul 2016 15:14:35 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>e91455a1 - [media] dvb-usb: split out common parts of dibusb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#e91455a1</link>
        <description>[media] dvb-usb: split out common parts of dibusbTha ARM randconfig builds came up with another rare build failurefor the dib3000mc driver, when dvb-usb-dibusb-mb is built-in anddib3000mc is a loadable module:ERROR: &quot;dibusb_dib3000mc_frontend_attach&quot; [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!ERROR: &quot;dibusb_dib3000mc_tuner_attach&quot; [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!Apparently this used to be a valid configuration (build-time, notrun-time), but broke as part of a cleanup.I tried reverting the cleanup, but saw that the code was still wrongthen. This tries to fix the code properly, by moving the problematicfunctions into a new file that now is built as a loadable module orbuilt-in, whichever is correct for a particular configuration. It fixesthe regression as well as the runtime problem that already existed.The new module dependency chain is now:   dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk}   dvb-usb-dibusb-mb         |                        |                   |          |   dvb-usb-dibusb-mc-common       |        ___________|          |         |               |        |        |                     |   dib3000mc (frontend)  |        |        |         dib3000mb (frontend)                         |        |        |                         |        |        |                        dvb-usb-dibusb-commonI have also checked the two other files that were changed in the originalcleanup, and found them to be correct in either version, so I do nottouch that part.As this is a rather obscure bug, there is no need for backports.Fixes: 028c70ff42783 (&quot;[media] dvb-usb/dvb-usb-v2: use IS_ENABLED&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Tue, 19 Jul 2016 15:14:34 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>991ce92f - [media] use https://linuxtv.org for LinuxTV URLs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#991ce92f</link>
        <description>[media] use https://linuxtv.org for LinuxTV URLsWhile https was always supported on linuxtv.org, only inDec 3 2015 the website is using valid certificates.As we&apos;re planning to drop pure http support on somefuture, change all references at the media subsystemto point to the https URL instead.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Fri, 04 Dec 2015 12:38:59 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>0fecb6c0 - [media] dw2102: switch ts2022 to ts2020 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#0fecb6c0</link>
        <description>[media] dw2102: switch ts2022 to ts2020 driverChange ts2022 driver to ts2020 driver. ts2020 driver supportsboth tuner chip models.That affects TechnoTrend TT-connect S2-4600 DVB-S/S2 device, whichOlli just added.Cc: Olli Salonen &lt;olli.salonen@iki.fi&gt;Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Sun, 29 Mar 2015 22:28:39 +0000</pubDate>
        <dc:creator>Antti Palosaari &lt;crope@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>27254c36 - [media] dw2102: TechnoTrend TT-connect S2-4600 DVB-S/S2 tuner</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#27254c36</link>
        <description>[media] dw2102: TechnoTrend TT-connect S2-4600 DVB-S/S2 tunerTechnoTrend TT-connect S2-4600 is a USB2.0 DVB-S/S2 tuner using the popularMontage M88DS3103/M88TS2022 demod/tuner.The demodulator needs a firmware. Antti posted a firmware when releasingsupport for PCTV 461e, available here:http://palosaari.fi/linux/v4l-dvb/firmware/M88DS3103/Signed-off-by: Olli Salonen &lt;olli.salonen@iki.fi&gt;Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Mon, 16 Mar 2015 17:22:18 +0000</pubDate>
        <dc:creator>Olli Salonen &lt;olli.salonen@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>2adb177e - [media] cxusb: remove TechnoTrend CT2-4400 and CT2-4650 devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#2adb177e</link>
        <description>[media] cxusb: remove TechnoTrend CT2-4400 and CT2-4650 devicesRemove TechnoTrend CT2-4400 and CT2-4650 devices from cxusb.They are supported by dvb-usb-dvbsky driver in PATCH 3/3.Signed-off-by: Nibble Max &lt;nibble.max@gmail.com&gt;Reviewed-by: Olli Salonen &lt;olli.salonen@iki.fi&gt;Reviewed-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Wed, 26 Nov 2014 12:35:14 +0000</pubDate>
        <dc:creator>Nibble Max &lt;nibble.max@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6832d11e - [media] cxusb: Add support for TechnoTrend TT-connect CT2-4650 CI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#6832d11e</link>
        <description>[media] cxusb: Add support for TechnoTrend TT-connect CT2-4650 CITechnoTrend TT-connect CT2-4650 CI (0b48:3012) is an USB DVB-T2/C tuner withthe following components: USB interface: Cypress CY7C68013A-56LTXC Demodulator: Silicon Labs Si2168-A20 Tuner: Silicon Labs Si2158-A20 CI chip: CIMaX SP2HFThe firmware for the tuner is the same as for TechnoTrend TT-TVStick CT2-4400.See https://www.mail-archive.com/linux-media@vger.kernel.org/msg76944.htmlThe demodulator needs a firmware that can be extracted from the Windows drivers.File ttConnect4650_64.sys should be extracted fromhttp://www.tt-downloads.de/bda-treiber_4.1.0.4.zip (MD5 sum below).3464bfc37a47b4032568718bacba23fb  ttConnect4650_64.sysThen the firmware can be extracted:dd if=ttConnect4650_64.sys ibs=1 skip=273376 count=6424 of=dvb-demod-si2168-a20-01.fwThe SP2 CI module requires a definition of a function cxusb_tt_ct2_4650_ci_ctrlthat is passed on to the SP2 driver and called back for CAM operations.[crope@iki.fi: meld USB ID define patch to this]Signed-off-by: Olli Salonen &lt;olli.salonen@iki.fi&gt;Reviewed-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Fri, 08 Aug 2014 07:06:37 +0000</pubDate>
        <dc:creator>Olli Salonen &lt;olli.salonen@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>26c42b0d - [media] cxusb: TechnoTrend CT2-4400 USB DVB-T2/C tuner support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#26c42b0d</link>
        <description>[media] cxusb: TechnoTrend CT2-4400 USB DVB-T2/C tuner supportUSB ID 0b48:3014.USB interface: Cypress CY7C68013A-56LTXCDemodulator: Silicon Labs Si2168-30Tuner: Silicon Labs Si2158-20Cc: Michael Krufky &lt;mkrufky@linuxtv.org&gt;Signed-off-by: Olli Salonen &lt;olli.salonen@iki.fi&gt;Reviewed-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;Reviewed-by: Michael Ira Krufky &lt;mkrufky@linuxtv.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Sun, 13 Jul 2014 13:52:22 +0000</pubDate>
        <dc:creator>Olli Salonen &lt;olli.salonen@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>da92c293 - [media] ttusb2: Kconfig patch to auto-select frontends for TechnoTrend CT-3650</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/dvb-usb/Kconfig#da92c293</link>
        <description>[media] ttusb2: Kconfig patch to auto-select frontends for TechnoTrend CT-3650The ttusb2 module is already updated to recognize the TechnoTrend CT-3650CI DVB C/T USB2.0 receiver in addition to the Pinnacle 400e. But ifMEDIA_SUBDRV_AUTOSELECT is used, the required tuner and demodulatormodules are not automatically selected. Here&apos;s a patch to fix that and add anote of the CT-3650 to the online help of the ttusb2 module.This patch applies cleanly to 3.7.6 and other 3.7.x kernels.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/dvb-usb/Kconfig</description>
        <pubDate>Tue, 05 Feb 2013 10:08:42 +0000</pubDate>
        <dc:creator>Matti Kurkela &lt;Matti.Kurkela@iki.fi&gt;</dc:creator>
    </item>
</channel>
</rss>
