<?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>7655c342 - media: Kconfig: Make DVB_CORE=m possible when MEDIA_SUPPORT=y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#7655c342</link>
        <description>media: Kconfig: Make DVB_CORE=m possible when MEDIA_SUPPORT=yA case that CONFIG_MEDIA_SUPPORT is y but we need DVB_CORE=m, andthis doesn&apos;t work since DVB_CORE is default MEDIA_DIGITAL_TV_SUPPORTand then follows MEDIA_SUPPORT.Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Lecopzer Chen &lt;lecopzer.chen@mediatek.com&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Mon, 16 May 2022 17:15:15 +0000</pubDate>
        <dc:creator>Lecopzer Chen &lt;lecopzer.chen@mediatek.com&gt;</dc:creator>
    </item>
<item>
        <title>f7ec3f62 - media: remove reference to CONFIG_EMBEDDED in MEDIA_SUPPORT_FILTER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#f7ec3f62</link>
        <description>media: remove reference to CONFIG_EMBEDDED in MEDIA_SUPPORT_FILTERThe config EMBEDDED selects EXPERT, i.e., when EMBEDDED is enabled, EXPERTis usually also enabled. Hence, it sufficient to have the optionMEDIA_SUPPORT_FILTER set to y if !EXPERT.This way, MEDIA_SUPPORT_FILTER does not refer to CONFIG_EMBEDDED anymoreand allows us to remove CONFIG_EMBEDDED in the close future.Remove the reference to CONFIG_EMBEDDED in MEDIA_SUPPORT_FILTER.Link: https://lore.kernel.org/linux-media/20220908104337.11940-4-lukas.bulwahn@gmail.comSigned-off-by: Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&gt;Reviewed-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Thu, 08 Sep 2022 10:43:34 +0000</pubDate>
        <dc:creator>Lukas Bulwahn &lt;lukas.bulwahn@gmail.com&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/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/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>d7700ca9 - media: platform: Kconfig: place platform drivers on a submenu</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#d7700ca9</link>
        <description>media: platform: Kconfig: place platform drivers on a submenuJust like media bus drivers, place platform drivers on asubmenu, in order to better organize user-selection:    Media drivers  ---&gt;	    *** media drivers ***	[*] Media USB Adapters  ---&gt;	[*] Media PCI Adapters  ---&gt;	-*- Radio Adapters  ---&gt;	[*] Media platform devices  ---&gt;	    *** MMC/SDIO DVB adapters ***	&lt; &gt; Siano SMS1xxx based MDTV via SDIO interface	[*] V4L test drivers  ---&gt;	[*] DVB test drivers  ---&gt;	    *** FireWire (IEEE 1394) Adapters ***	&lt;*&gt; FireDTV and FloppyDTV	    *** common driver options ***	[ ] Enable Remote Controller support for Siano devices	[ ] Enable debugfs for smsdvbAs this submenu depends on MEDIA_PLATFORM_DRIVERS and defaults to &quot;y&quot;,there&apos;s no need to change already-existing .config entries, nor touchthe several make *_defconfig.Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Sun, 13 Mar 2022 05:47:32 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>09f4d151 - media: correct MEDIA_TEST_SUPPORT help text</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#09f4d151</link>
        <description>media: correct MEDIA_TEST_SUPPORT help textFix grammar/wording in the help text for MEDIA_TEST_SUPPORT.Fixes: 4b32216adb01 (&quot;media: split test drivers from platform directory&quot;)Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;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/Kconfig</description>
        <pubDate>Sun, 07 Nov 2021 18:19:23 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>aa966274 - media: Correct &apos;so&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#aa966274</link>
        <description>media: Correct &apos;so&apos;In Kconfig it should be &apos;to&apos;In c8sectpfe-core.c it should be &apos;do&apos;Signed-off-by: Xiaofeng Cao &lt;cxfcosmos@gmail.com&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;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/Kconfig</description>
        <pubDate>Wed, 10 Mar 2021 14:58:16 +0000</pubDate>
        <dc:creator>Xiaofeng Cao &lt;cxfcosmos@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8b0ff665 - media: Remove superfluous dependency for MEDIA_SUPPORT_FILTER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#8b0ff665</link>
        <description>media: Remove superfluous dependency for MEDIA_SUPPORT_FILTERThe MEDIA_SUPPORT_FILTER configuration option is located inside a blockprotected by &quot;#if MEDIA_SUPPORT&quot;, so there is no need to have anexplicit dependency on MEDIA_SUPPORT.  Drop it.Fixes: c6774ee035dcb878 (&quot;media: Kconfig: make filtering devices optional&quot;)Signed-off-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Thu, 04 Jun 2020 09:40:30 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>dacca5f0 - media: media/test_drivers: rename to test-drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#dacca5f0</link>
        <description>media: media/test_drivers: rename to test-driversWe never use _ in directory names in the media subsystem, sorename to test-drivers instead for consistency.Also update MAINTAINERS with the new path.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/Kconfig</description>
        <pubDate>Thu, 16 Apr 2020 08:25:59 +0000</pubDate>
        <dc:creator>Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>5c57ae64 - media: i2c/Kconfig: use sub-menus for I2C support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#5c57ae64</link>
        <description>media: i2c/Kconfig: use sub-menus for I2C supportThere are *lots* of I2C ancillary drivers. While we&apos;re usingcomments to group them, all options appear at the same menu.It should be a lot clearer to group them into sub-menus, withmay help people to go directly to the driver(s) he&apos;s needingto enable.Suggested-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;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/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 13:39:38 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ffb2e008 - media: Kconfig: include test_drivers with MEDIA_TEST_SUPPORT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#ffb2e008</link>
        <description>media: Kconfig: include test_drivers with MEDIA_TEST_SUPPORTInclude test_drivers/Kconfig when MEDIA_TEST_SUPPORT is enabled ratherthan MEDIA_PLATFORM_SUPPORT.  Test drivers should not depend onplatform drivers to be enabled.Reported-by: &quot;kernelci.org bot&quot; &lt;bot@kernelci.org&gt;Fixes: 4b32216adb010 (&quot;media: split test drivers from platform directory&quot;)Signed-off-by: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 13:35:52 +0000</pubDate>
        <dc:creator>Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>46d2a3b9 - media: place CEC menu before MEDIA_SUPPORT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#46d2a3b9</link>
        <description>media: place CEC menu before MEDIA_SUPPORTThe only item that opens at the CEC Kconfig menu is relatedto Remote Controller. Also, its support should not depend onmedia support, so it makes sense to keep both RC and CEC together.After this change, the main media menus that are visibleunder &quot;Device Drivers&quot; menu are:	&lt;*&gt; Remote Controller support  ---&gt;	[ ] HDMI CEC RC integration (NEW)	&lt; &gt; HDMI CEC drivers	&lt;M&gt; Multimedia support  ---&gt;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/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 07:55:10 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8e5b5d75 - media: Kconfig: DVB support should be enabled for Digital TV</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#8e5b5d75</link>
        <description>media: Kconfig: DVB support should be enabled for Digital TVAs we reverted changeset 85f7cd3a2aad (&quot;Revert &quot;media: Kconfig: better support hybrid TV devices&quot;&quot;),we should add a default to DVB_CORE, as otherwise DVB support won&apos;t work.Fixes: 85f7cd3a2aad (&quot;Revert &quot;media: Kconfig: better support hybrid TV devices&quot;&quot;)Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 08:06:59 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9393d050 - Revert &quot;media: Kconfig: move CEC-specific options to cec/Kconfig&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#9393d050</link>
        <description>Revert &quot;media: Kconfig: move CEC-specific options to cec/Kconfig&quot;The CEC_CORE symbols are selected by DRM, and should beindependent of MEDIA_SUPPORT.Fixes this warning when doing &quot;make multi_v7_defconfig&quot;:	WARNING: unmet direct dependencies detected for CEC_CORE	  Depends on [m]: MEDIA_SUPPORT [=m]	  Selected by [y]:	  - DRM_TEGRA [=y] &amp;&amp; HAS_IOMEM [=y] &amp;&amp; (ARCH_TEGRA [=y] || ARM [=y] &amp;&amp; COMPILE_TEST [=n]) &amp;&amp; COMMON_CLK [=y] &amp;&amp; DRM [=y] &amp;&amp; OF [=y] &amp;&amp; CEC_NOTIFIER [=y]	  Selected by [m]:	  - VIDEO_SAMSUNG_S5P_CEC [=m] &amp;&amp; MEDIA_SUPPORT [=m] &amp;&amp; MEDIA_PLATFORM_SUPPORT [=y] &amp;&amp; CEC_PLATFORM_DRIVERS [=y] &amp;&amp; (ARCH_EXYNOS [=y] || COMPILE_TEST [=n])	  - DRM_EXYNOS_HDMI [=y] &amp;&amp; HAS_IOMEM [=y] &amp;&amp; DRM_EXYNOS [=m] &amp;&amp; (DRM_EXYNOS_MIXER [=y] || DRM_EXYNOS5433_DECON [=n]) &amp;&amp; CEC_NOTIFIER [=y]	  - DRM_I2C_ADV7511_CEC [=y] &amp;&amp; HAS_IOMEM [=y] &amp;&amp; DRM [=y] &amp;&amp; DRM_BRIDGE [=y] &amp;&amp; DRM_I2C_ADV7511 [=m]	  - DRM_DW_HDMI [=m] &amp;&amp; HAS_IOMEM [=y] &amp;&amp; DRM [=y] &amp;&amp; DRM_BRIDGE [=y] &amp;&amp; CEC_NOTIFIER [=y]This reverts commit f1991411257bdb68d96ef8c8c5b35f412b480375.Reported-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Wed, 15 Apr 2020 07:46:06 +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/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/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>b6a7d1bc - media: Kconfig: don&apos;t use visible for device type select</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#b6a7d1bc</link>
        <description>media: Kconfig: don&apos;t use visible for device type selectWhile making the menu invisible seemed a good idea, there&apos;sa drawback: when the menu is not visible, it is not parsingthe &quot;default&quot; dependency.So, instead, let&apos;s just avoid the items at the menu to beprompted, by using the &quot;prompt ... if&quot; construction.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Wed, 25 Mar 2020 15:33:35 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0c822d97 - media: Kconfig: Better organize the per-API options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#0c822d97</link>
        <description>media: Kconfig: Better organize the per-API optionsAfter this change, the menu is displayed like above.1) When filtering is not active:    --- Multimedia support        [ ]   Filter devices by their types        [*]   Autoselect ancillary drivers (tuners, sensors, i2c, spi, frontends)              Media core support  ---&gt;              Video4Linux options  ---&gt;              Media controller options  ---&gt;              Digital TV options  ---&gt;              HDMI CEC options  ---&gt;              Media drivers  ---&gt;2) When filtering is active:    --- Multimedia support        [*]   Filter devices by their types        [*]   Autoselect ancillary drivers (tuners, sensors, i2c, spi, frontends)              Media device types  ---&gt;              Video4Linux options  ---&gt;              Media controller options  ---&gt;              Digital TV options  ---&gt;              HDMI CEC options  ---&gt;              Media drivers  ---&gt;The per-API menu will only be displayed if the correspondingcore support is enabled.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Wed, 25 Mar 2020 10:15:15 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b0cd4fb2 - media: Kconfig: on !EMBEDDED &amp;&amp; !EXPERT, enable driver filtering</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#b0cd4fb2</link>
        <description>media: Kconfig: on !EMBEDDED &amp;&amp; !EXPERT, enable driver filteringAdvanced and embedded users know what to do, so, by default,they will likely want to be able to open the entire set ofKconfig media options.Normal &quot;poor&quot; users usually needs more help when settingstuff, so let&apos;s open an more simplified version to them bydefault.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 13:29:57 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1b80d36a - media: Kconfig: move the position of sub-driver autoselection</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#1b80d36a</link>
        <description>media: Kconfig: move the position of sub-driver autoselectionLet&apos;s place the sub-driver-autoselection option just belowthe device filtering one, as it also controls a filter menu,with is not even visible if !EXPERT &amp;&amp; !EMBEDDED.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 13:24:41 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5e9e60f4 - media: Kconfig: place all options under a sub-menu</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#5e9e60f4</link>
        <description>media: Kconfig: place all options under a sub-menuThat should make easier for people setting the mediasubsystem config options, as they&apos;ll be split by thetype of functionality that will be enabled.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 13:09:23 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8fc42fff - media: Kconfig: move media controller core select to main Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/Kconfig#8fc42fff</link>
        <description>media: Kconfig: move media controller core select to main KconfigLet&apos;s place the main API selections at the media/Kconfig file,as this way we can better organize things.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/Kconfig</description>
        <pubDate>Tue, 24 Mar 2020 12:59:23 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
