<?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>39d08ab9 - media: Revert &quot;media: saa7146: deprecate hexium_gemini/orion, mxb and ttpci&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#39d08ab9</link>
        <description>media: Revert &quot;media: saa7146: deprecate hexium_gemini/orion, mxb and ttpci&quot;This reverts commit e33fdb5a02490059e2f48ced2c038c8a46c6476d.The saa7146-based devices are still in use, esp. for DVB. So movethese drivers back to mainline.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/common/Kconfig</description>
        <pubDate>Wed, 01 Feb 2023 12:21:36 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>466be4c9 - usb: uvc: move uvc_fmts and uvc_format_by_guid to own compile unit</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#466be4c9</link>
        <description>usb: uvc: move uvc_fmts and uvc_format_by_guid to own compile unitThe media driver USB_VIDEO_CLASS and USB_F_UVC are using the samefunction uvc_format_by_guid. Since the function is inline, every userwill get a copy of the used uvc_fmts array and the function. This patchmoves the code to an own compile unit and add this dependency asUVC_COMMON to both users.Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Daniel Scally &lt;dan.scally@ideasonboard.com&gt;Tested-by: Daniel Scally &lt;dan.scally@ideasonboard.com&gt;Signed-off-by: Michael Grzeschik &lt;m.grzeschik@pengutronix.de&gt;Link: https://lore.kernel.org/r/20230126231456.3402323-4-m.grzeschik@pengutronix.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Thu, 26 Jan 2023 23:14:54 +0000</pubDate>
        <dc:creator>Michael Grzeschik &lt;m.grzeschik@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>e33fdb5a - media: saa7146: deprecate hexium_gemini/orion, mxb and ttpci</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#e33fdb5a</link>
        <description>media: saa7146: deprecate hexium_gemini/orion, mxb and ttpciDeprecate the hexium_gemini, hexium_orion, mxb and ttpci saa7146-baseddrivers: these drivers do not use the vb2 framework for video streaming,instead it uses the old videobuf framework.We want to get rid of these old drivers, so deprecated these for futureremoval.[hverkuil: update MAINTAINERS file]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/common/Kconfig</description>
        <pubDate>Thu, 11 Aug 2022 09:17:48 +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/common/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/common/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/common/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/common/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>d9d6e1f3 - media: dvb-usb: auto-select CYPRESS_FIRMWARE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/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/common/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>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/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/common/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>7952be9b - media: drivers/media/common/videobuf2: rename from videobuf</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#7952be9b</link>
        <description>media: drivers/media/common/videobuf2: rename from videobufThis directory contains the videobuf2 framework, so name thedirectory accordingly.The name &apos;videobuf&apos; typically refers to the old and deprecatedvideobuf version 1 framework so that was confusing.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Acked-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Mon, 08 Jan 2018 20:20:01 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>03fbdb2f - media: move videobuf2 to drivers/media/common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#03fbdb2f</link>
        <description>media: move videobuf2 to drivers/media/commonNow that VB2 is used by both V4L2 and DVB core, move it tothe common part of the subsystem.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Thu, 21 Dec 2017 13:29:39 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;</dc:creator>
    </item>
<item>
        <title>e07d46e7 - [media] tpg: Export the tpg code from vivid as a module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#e07d46e7</link>
        <description>[media] tpg: Export the tpg code from vivid as a moduleThe test pattern generator will be used by other drivers as the virtualmedia controller (vimc)Signed-off-by: Helen Mae Koike Fornazier &lt;helen.koike@collabora.co.uk&gt;Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Fri, 08 Apr 2016 20:28:58 +0000</pubDate>
        <dc:creator>Helen Mae Koike Fornazier &lt;helen.koike@collabora.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>90ca8bef - [media] btcx-risc: move to bt8xx</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#90ca8bef</link>
        <description>[media] btcx-risc: move to bt8xxThe btcx-risc module is no longer used by other drivers except for bttv.So move it from common to bt8xx and make it part of the bttv driver insteadof as a separate module.This module should never have been a common module since most of the codehas always been bttv specific.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@osg.samsung.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Fri, 12 Dec 2014 13:27:56 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>7c15b715 - [media] media: Fix randconfig error</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#7c15b715</link>
        <description>[media] media: Fix randconfig errorFix randconfig error when USB is not enabled:ERROR: &quot;usb_control_msg&quot; [drivers/media/common/cypress_firmware.ko] undefined!Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Mon, 08 Apr 2013 16:47:03 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>79a63c60 - [media] media: move dvb-usb-v2/cypress_firmware.c to media/common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#79a63c60</link>
        <description>[media] media: move dvb-usb-v2/cypress_firmware.c to media/commonLoading the cypress firmware is not dvb specific and should be commonfunctionality. Move the source to media/common and make it a standalonemodule.As a result we can remove the dependency on dvb-usb in go7007, which hasnothing to do with dvb.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Mon, 25 Mar 2013 09:43:12 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>a393edad - [media] tveeprom: move from media/i2c to media/common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#a393edad</link>
        <description>[media] tveeprom: move from media/i2c to media/commonThe tveeprom module is a helper module for Hauppauge-based eeproms.It&apos;s used by many drivers and the i2c part is actually optional, so thisdriver is better placed in the media/common directory.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Wed, 06 Feb 2013 11:03:41 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>f1c50f24 - [media] btcx-risc: move from media/i2c to media/common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#f1c50f24</link>
        <description>[media] btcx-risc: move from media/i2c to media/commonThe btcx-risc module is a helper module for bttv/conexant based TV cards.It isn&apos;t an i2c module at all, instead it should be in common since it isused by 4 pci drivers.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Wed, 06 Feb 2013 10:57:57 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>62595820 - [media] cx2341x: move from media/i2c to media/common</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#62595820</link>
        <description>[media] cx2341x: move from media/i2c to media/commonThe cx2341x module is a helper module for conexant-based MPEG encoders.It isn&apos;t an i2c module at all, instead it should be in common since it isused by 7 pci and usb drivers to handle the MPEG setup.It also shouldn&apos;t be visible in the config menu as it is alwaysselected automatically by those drivers that need it.Signed-off-by: Hans Verkuil &lt;hans.verkuil@cisco.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Wed, 06 Feb 2013 10:53:31 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hans.verkuil@cisco.com&gt;</dc:creator>
    </item>
<item>
        <title>fdd1eeb4 - [media] siano: allow compiling it without RC support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#fdd1eeb4</link>
        <description>[media] siano: allow compiling it without RC supportRemote controller support should be optional on all drivers.Make it optional at Siano&apos;s driver.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Wed, 17 Oct 2012 19:59:01 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>0013ca8c - [media] siano: break it into common, mmc and usb</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#0013ca8c</link>
        <description>[media] siano: break it into common, mmc and usbsiano is, in fact, 2 drivers: one for MMC and one for USB, plusa common bus-independent code. Break it accordingly.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Thu, 14 Jun 2012 19:36:01 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>ed0c8b54 - [media] saa7146: Move it to its own directory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#ed0c8b54</link>
        <description>[media] saa7146: Move it to its own directoryIn order to better organize the directory tree, move thesaa7146 common driver to its own directory.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Thu, 14 Jun 2012 19:36:00 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>3785bc17 - [media] b2c2: break it into common/pci/usb directories</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/common/Kconfig#3785bc17</link>
        <description>[media] b2c2: break it into common/pci/usb directoriesb2c2 is, in fact, 2 drivers: one for PCI and one for USB, plusa common bus-independent code. Break it accordingly.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/media/common/Kconfig</description>
        <pubDate>Thu, 14 Jun 2012 19:35:58 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
