<?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>b7eeabc1 - media: tm6000: deprecate this driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#b7eeabc1</link>
        <description>media: tm6000: deprecate this driverDeprecate the tm6000 driver. This driver does not use the vb2 frameworkfor video streaming, instead it uses the old videobuf framework.We want to get rid of these old drivers, so deprecated it for futureremoval.Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Thu, 11 Aug 2022 09:17:45 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>50f0b243 - media: zr364xx: deprecate this driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#50f0b243</link>
        <description>media: zr364xx: deprecate this driverDeprecate the zr364xx driver. This driver does not use the vb2 frameworkfor video streaming, instead it uses the old videobuf framework.We want to get rid of these old drivers, so deprecated it for futureremoval.Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Thu, 11 Aug 2022 09:17:44 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>be8cebc4 - media: cpia2: deprecate this driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#be8cebc4</link>
        <description>media: cpia2: deprecate this driverDeprecate the cpia2 driver. This driver does not use the vb2 frameworkfor video streaming, instead it implements its own version.We want to get rid of these old drivers, so deprecated it for futureremoval.Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Thu, 11 Aug 2022 09:17:42 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>56280c64 - media: stkwebcam: deprecate driver, move to staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#56280c64</link>
        <description>media: stkwebcam: deprecate driver, move to stagingThis is a very old driver for very old hardware and it is one ofthe very few remaining that does not use the vb2 framework (oreven the older videobuf framework), so deprecate this driverand move it to staging with the intent to removing it altogetherby the end of 2022.If someone wants to keep this driver, then it has to be convertedto use vb2.Reviewed-by: Ricardo Ribalda &lt;ribalda@chromium.org&gt;Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Wed, 18 May 2022 09:20:43 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>6cdc31b2 - media: media/*/Kconfig: sort entries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/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/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>de646852 - media: move ttpci-eeprom to common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#de646852</link>
        <description>media: move ttpci-eeprom to commonThe ttpci-eeprom is actually an independent driver thatdoesn&apos;t depend on the stuff under drivers/media/pci/ttpci/.Also, it is used by an USB driver (pctv452e).So, move it to the common directory.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Mon, 31 May 2021 15:05:45 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a8106818 - media: move CEC USB drivers to a separate directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#a8106818</link>
        <description>media: move CEC USB drivers to a separate directoryAs CEC support doesn&apos;t depend on MEDIA_SUPPORT, let&apos;splace the platform drivers outside the media menu.As a side effect, instead of depends on	USB, driversjust select it.Acked-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 09:14:25 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>85f7cd3a - Revert &quot;media: Kconfig: better support hybrid TV devices&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#85f7cd3a</link>
        <description>Revert &quot;media: Kconfig: better support hybrid TV devices&quot;Changing from &quot;depends on&quot; to &quot;select&quot; may cause someside-effects. This patch is not ready to be merged yet,as it requires some adjustments.So, let&apos;s revert it.This reverts commit a3b91d8bd1e034c8ed89d3f55243478af97a0a52.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Tue, 14 Apr 2020 09:00:30 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a3b91d8b - media: Kconfig: better support hybrid TV devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#a3b91d8b</link>
        <description>media: Kconfig: better support hybrid TV devicesRight now, if one has an hybrid TV card, it has to selectboth analog and digital TV support, as otherwise the neededcore support won&apos;t be selected.Change the logic to auto-select the core support for thosedrivers, as this is a way more intuitive.It should be noticed that, as now both DVB_CORE and VIDEO_DEVdefaults depends on selecting a hybrid cards, we had to removethe explicit dependencies there, in order to avoid circulardependencies.That requires some tricks:1) the prompt should not be not visible when an hybrid card   is selected, as the user shold not change it.2) When a media hybrid device is selected, the modular   option for DVB_CORE and VIDEO_DEV will follow the   MEDIA_SUPPORT dependency, as we can&apos;t have a core   built with &quot;y&quot; with a driver built as module.Note: while here, moved two pure V4L2 PCI drivers out of the&quot;hybrid&quot; part of config and consider pvrusb2 as an hybriddevice.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Wed, 25 Mar 2020 07:36:36 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3bb11201 - media: Kconfig: move drivers-specific TTPCI_EEPROM Kconfig var</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#3bb11201</link>
        <description>media: Kconfig: move drivers-specific TTPCI_EEPROM Kconfig varThis option is used only by av7110 and by an USB driver. Asthe av7110 is the first DVB hardware, hardly found thosedays, let&apos;s opt to place it at usb/Kconfig, as the driverwith needs it might have a longer lifetime.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 12:53:23 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8fb12ce2 - media: usbvision: deprecate driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#8fb12ce2</link>
        <description>media: usbvision: deprecate driverThe driver is deprecated and scheduled for removal by the endof 2020. The reason is that this driver is for old and obsoletehardware, and it produces a continuous stream of syzbot errors dueto poor code.In order to prevent removal the following actions would have tobe taken:- clean up the code- convert to the vb2 framework- fix the disconnect and free-on-last-user handling (i.e., add  a release callback for struct v4l2_device and rework the code  to use that correctly).Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Thu, 20 Feb 2020 08:14:13 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&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/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/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>0f314f6c - [media] rainshadow-cec: new RainShadow Tech HDMI CEC driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#0f314f6c</link>
        <description>[media] rainshadow-cec: new RainShadow Tech HDMI CEC driverThis driver supports the RainShadow Tech USB HDMI CEC adapter.See: http://rainshadowtech.com/HdmiCecUsb.htmlSigned-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Sat, 05 Nov 2016 10:39:58 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>aee4c782 - [media] pulse8-cec: move out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#aee4c782</link>
        <description>[media] pulse8-cec: move out of stagingNow that the CEC framework has been moved out of staging and into themainline kernel we can do the same for the pulse8-cec driver.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Wed, 02 Nov 2016 10:34:53 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>ea2e813e - [media] tlg2300: move to staging in preparation for removal</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#ea2e813e</link>
        <description>[media] tlg2300: move to staging in preparation for removalThis driver hasn&apos;t been tested in a long, long time. The company that madethis chip has gone bust many years ago and hardware using this chip is nextto impossible to find.This driver needs to be converted to newer media frameworks but due to thelack of hardware that&apos;s going to be impossible. Since cheap alternatives areeasily available, there is little point in keeping this driver alive.In other words, this driver is a prime candidate for removal. If someone isinterested in working on this driver to prevent its removal, then pleasecontact the linux-media mailinglist.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Acked-by: Huang Shijie &lt;shijie8@gmail.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Tue, 02 Dec 2014 15:40:32 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>969ec1f6 - [media] hackrf: HackRF SDR driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#969ec1f6</link>
        <description>[media] hackrf: HackRF SDR driverV4L2 driver for HackRF SDR. Very basic version, with reducedfeature set. Driver implements receiver only, hardware supportsalso transmitter.USB ID 1d50:6089. Model HackRF OneSigned-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/Kconfig</description>
        <pubDate>Sat, 23 Aug 2014 07:40:01 +0000</pubDate>
        <dc:creator>Antti Palosaari &lt;crope@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>d6317c68 - [media] as102: promote it out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#d6317c68</link>
        <description>[media] as102: promote it out of stagingThis driver is stable and doesn&apos;t contain any really seriousissue. Move it out of staging.Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Tue, 12 Aug 2014 21:50:15 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>7955f03d - [media] go7007: move out of staging into drivers/media/usb.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#7955f03d</link>
        <description>[media] go7007: move out of staging into drivers/media/usb.Now that the custom motion detection API in this driver has beenreplaced with a standard API there is no reason anymore to keep itin staging. So (finally!) move it to drivers/media/usb.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;m.chehab@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/usb/Kconfig</description>
        <pubDate>Tue, 22 Jul 2014 04:21:37 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>fd8b5f50 - msi2500: move msi3101 out of staging and rename</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#fd8b5f50</link>
        <description>msi2500: move msi3101 out of staging and renameMove msi3101 out of staging and rename to msi2500.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/Kconfig</description>
        <pubDate>Sun, 13 Jul 2014 01:12:05 +0000</pubDate>
        <dc:creator>Antti Palosaari &lt;crope@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>f3e77596 - [media] airspy: move out of staging into drivers/media/usb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/usb/Kconfig#f3e77596</link>
        <description>[media] airspy: move out of staging into drivers/media/usbMove it out of staging into media like all the other SDR driverstoo. There is no good reasons to keep these SDR drivers in staging.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/Kconfig</description>
        <pubDate>Fri, 18 Jul 2014 00:42:24 +0000</pubDate>
        <dc:creator>Antti Palosaari &lt;crope@iki.fi&gt;</dc:creator>
    </item>
</channel>
</rss>
