<?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>9958d30f - media: Kconfig: cleanup VIDEO_DEV dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/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/dvb-core/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>10713a94 - media: Kconfig: move DVB-specific options to dvb-core/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#10713a94</link>
        <description>media: Kconfig: move DVB-specific options to dvb-core/KconfigIn order to cleanup the main media Kconfig, move the DVB-corespecific options to dvb-core/Kconfig.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 12:47:11 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>e58be016 - media: dvb-core: Kconfig: default to use dynamic minors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#e58be016</link>
        <description>media: dvb-core: Kconfig: default to use dynamic minorsAll modern Linux distributions nowadays use udev or somealternative (like systemd). So, it makes sense to changethe default to use dynamic minors.Please notice that this default doesn&apos;t enable any code.It just changes the dvb-core behavior.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Wed, 25 Mar 2020 14:01:25 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2f39cce9 - media: remove redundant &apos;default n&apos; from Kconfig-s</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#2f39cce9</link>
        <description>media: remove redundant &apos;default n&apos; from Kconfig-s&apos;default n&apos; is the default value for any bool or tristate Kconfigsetting so there is no need to write it explicitly.Also since commit f467c5640c29 (&quot;kconfig: only write &apos;# CONFIG_FOOis not set&apos; for visible symbols&quot;) the Kconfig behavior is the sameregardless of &apos;default n&apos; being present or not:    ...    One side effect of (and the main motivation for) this change is making    the following two definitions behave exactly the same:        config FOO                bool        config FOO                bool                default n    With this change, neither of these will generate a    &apos;# CONFIG_FOO is not set&apos; line (assuming FOO isn&apos;t selected/implied).    That might make it clearer to people that a bare &apos;default n&apos; is    redundant.    ...Signed-off-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Fri, 12 Apr 2019 10:27:40 +0000</pubDate>
        <dc:creator>Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&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/dvb-core/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/dvb-core/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>ba711e1c - media: dvb-core: allow users to enable DVB net ULE debug</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#ba711e1c</link>
        <description>media: dvb-core: allow users to enable DVB net ULE debugThis debug option is there for a long time, but it is onlyenabled by editing the source code. Due to that, a breakageinside its code was only noticed years after a change atthe ULE handling logic.Make it a Kconfig parameter, as it makes easier foradvanced users to enable, and allow test if the compilationwon&apos;t be broken in the future.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Mon, 11 Dec 2017 16:37:26 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;</dc:creator>
    </item>
<item>
        <title>90866b3a - [media] Raise adapter number limit</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#90866b3a</link>
        <description>[media] Raise adapter number limitThe current limit is too low for latest cards with 8+ tuners on a single slot.IMHO, the most appropriate minimum default is 16.Signed-off-by: &#1041;&#1091;&#1076;&#1080; &#1056;&#1086;&#1084;&#1072;&#1085;&#1090;&#1086;, AreMa Inc &lt;knightrider@are.ma&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Tue, 05 Apr 2016 16:14:10 +0000</pubDate>
        <dc:creator>&#1041;&#1091;&#1076;&#1080; &#1056;&#1086;&#1084;&#1072;&#1085;&#1090;&#1086;, AreMa Inc &lt;knightrider@are.ma&gt;</dc:creator>
    </item>
<item>
        <title>bbd02f6a - [media] dvb_demux: convert an internal ifdef into a Kconfig option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#bbd02f6a</link>
        <description>[media] dvb_demux: convert an internal ifdef into a Kconfig optionThere are some ifdefs inside the dvb_demux that are meant toenable advanced debug capabilities, at the cost of being veryverbose.Keeping those as internal ifdefs is a very bad idea, as itdoesn&apos;t make easy to check if the code there was broken bysome patch. So, let&apos;s add an explicit Kconfig option for it.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-core/Kconfig</description>
        <pubDate>Thu, 13 Oct 2016 09:57:47 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;</dc:creator>
    </item>
<item>
        <title>3d6c2bc0 - [media] dvb: move the dvb core one level up</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-core/Kconfig#3d6c2bc0</link>
        <description>[media] dvb: move the dvb core one level upjust like the V4L2 core, move the DVB core to drivers/media, as theintention is to get rid of both &quot;video&quot; and &quot;dvb&quot; directories.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

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