<?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/dvb-frontends/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/dvb-frontends/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/dvb-frontends/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-frontends/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>b998a59f - media: sp8870: move it to staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#b998a59f</link>
        <description>media: sp8870: move it to stagingThis driver is used only by av7110, which is preparing forits retirement. So, move this ancillary driver to stay togetherwith av7110.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Mon, 31 May 2021 20:34:24 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b53f2fa1 - media: mxl692: MaxLinear 692 ATSC demod/tuner driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#b53f2fa1</link>
        <description>media: mxl692: MaxLinear 692 ATSC demod/tuner driverMaxLinear 692 is a combo demod/tuner which has ATSC and QAMcapabilities. Only ATSC is currently advertised via DVBproperties. QAM still has issues.Confirmed working on both big and little endian. Bigendian verified on PowerPC Mac mini.Signed-off-by: Brad Love &lt;brad@nextdimension.cc&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/dvb-frontends/Kconfig</description>
        <pubDate>Tue, 26 Jan 2021 01:54:13 +0000</pubDate>
        <dc:creator>Brad Love &lt;brad@nextdimension.cc&gt;</dc:creator>
    </item>
<item>
        <title>65fba0b1 - media: Fix RTL2832 not depending on REGMAP_I2C</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#65fba0b1</link>
        <description>media: Fix RTL2832 not depending on REGMAP_I2CPrevents this compile time error:ERROR: modpost: &quot;__regmap_init_i2c&quot; [drivers/media/dvb-frontends/rtl2832.ko] undefined!Signed-off-by: Maxim Plotnikov &lt;wgh@torlan.ru&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/dvb-frontends/Kconfig</description>
        <pubDate>Tue, 01 Dec 2020 00:14:27 +0000</pubDate>
        <dc:creator>Maxim Plotnikov &lt;wgh@torlan.ru&gt;</dc:creator>
    </item>
<item>
        <title>ceab3ac1 - media: dvb-frontends: DUMMY_FE should depends on DVB_CORE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#ceab3ac1</link>
        <description>media: dvb-frontends: DUMMY_FE should depends on DVB_COREUsing select for DVB_CORE doesn&apos;t work, as reported byRandy:	CONFIG_I2C=m	CONFIG_DVB_CORE=y	ld: drivers/media/dvb-core/dvbdev.o: in function `dvb_module_probe&apos;:	dvbdev.c:(.text+0xf92): undefined reference to `i2c_new_client_device&apos;	ld: dvbdev.c:(.text+0xffb): undefined reference to `i2c_unregister_device&apos;	ld: drivers/media/dvb-core/dvbdev.o: in function `dvb_module_release&apos;:	dvbdev.c:(.text+0x107d): undefined reference to `i2c_unregister_device&apos;The problem is actually caused by the dummy frontend driver,which uses select, and it is missing an I2C dependency:	WARNING: unmet direct dependencies detected for DVB_CORE	  Depends on [m]: MEDIA_SUPPORT [=y] &amp;&amp; MEDIA_DIGITAL_TV_SUPPORT [=y] &amp;&amp; (I2C [=m] || I2C [=m]=n)	  Selected by [y]:	  - DVB_DUMMY_FE [=y] &amp;&amp; MEDIA_SUPPORT [=y] &amp;&amp; MEDIA_TEST_SUPPORT [=y]As this is the only frontend driver using &quot;select DVB_CORE&quot;,change it do depends on DVB_CORE.Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Fri, 17 Apr 2020 07:13:38 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&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/dvb-frontends/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/dvb-frontends/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>76c34a8d - media: add SPDX headers on Kconfig and Makefile files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#76c34a8d</link>
        <description>media: add SPDX headers on Kconfig and Makefile filesMost of media Kconfig/Makefile files already has SPDX,but there are a few ones still missing. Add it to them.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Thu, 26 Mar 2020 15:13:16 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6268b351 - media: Kconfig: fix selection for test drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#6268b351</link>
        <description>media: Kconfig: fix selection for test driversThere are some long-time mistakes related to build testdrivers, with regards to depends on/select. Also, as wenow want to build any test driver without needing toenable anything else, change the logic in order to properlyfilter them.Please notice that the PCI skeleton is somewhat anexception, as it requires to select *both* SAMPLES andMEDIA_TEST_SUPPORT. I almost changed it to be either one,but decided to keep it as-is, as this is something thatwe don&apos;t really need to be included on any distribution.The only reason for someone to build it is for COMPILE_TESTpurposes.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Thu, 26 Mar 2020 14:47:25 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>97b19498 - media: Kconfig: mark other drivers as test drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#97b19498</link>
        <description>media: Kconfig: mark other drivers as test driversNeither the PCI skeleton nor the DVB dummy driver are realdrivers. They&apos;re there just as an example for a driverwritter.Distros should not enable those drivers. So, hide them ifMEDIA_TEST_SUPPORT is not selected.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Thu, 26 Mar 2020 08:45:31 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4fa4ef39 - media: Clarify how menus are hidden by SUBDRV_AUTOSELECT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#4fa4ef39</link>
        <description>media: Clarify how menus are hidden by SUBDRV_AUTOSELECTSome users have been having a hard time finding the hiddenmenus. A typically case are camera sensor drivers(e.g IMX219, OV5645, etc), which are common on embeddedplatforms and not really &quot;ancillary&quot; devices.The problem with MEDIA_SUBDRV_AUTOSELECT seems to be relatedto the fact that it uses the &quot;visible&quot; syntax to hidethe menus.This is not obvious and it normally takes some time tofigure out.To fix the problem, add a comment on each of hidden menus,which should clarify what option is causing menus to be hidden.Signed-off-by: Ezequiel Garcia &lt;ezequiel@collabora.com&gt;Signed-off-by: Hans Verkuil &lt;hverkuil-cisco@xs4all.nl&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Sat, 27 Jul 2019 13:31:29 +0000</pubDate>
        <dc:creator>Ezequiel Garcia &lt;ezequiel@collabora.com&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-frontends/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-frontends/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>8169cf0a - media: Kconfig: allow to select drivers if EMBEDDED</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#8169cf0a</link>
        <description>media: Kconfig: allow to select drivers if EMBEDDEDEmbedded systems often connect to sensors or other multimediasubdevices directly. Currently, to be able to select such asubdevice (e.g. CONFIG_VIDEO_OV5640) disabling of the auto-select config option is needed (CONFIG_MEDIA_SUBDRV_AUTOSELECT).This is inconvenient as the ancillary drivers for a particulardevice then need to be selected manually.Allow to select drivers manually while keeping the auto-selectfeature in case EXPERT (selected by EMBEDDED) is enabled.Signed-off-by: Stefan Agner &lt;stefan@agner.ch&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Fri, 11 Jan 2019 15:49:51 +0000</pubDate>
        <dc:creator>Stefan Agner &lt;stefan@agner.ch&gt;</dc:creator>
    </item>
<item>
        <title>1b09dd9f - media: dvb-frontends: add LNBH29 LNB supply driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#1b09dd9f</link>
        <description>media: dvb-frontends: add LNBH29 LNB supply driverAdd support for STMicroelectronics LNBH29 LNB supply driver.Signed-off-by: Katsuhiro Suzuki &lt;suzuki.katsuhiro@socionext.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Fri, 03 Aug 2018 02:08:39 +0000</pubDate>
        <dc:creator>Katsuhiro Suzuki &lt;suzuki.katsuhiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>0f408ce8 - media: dvb-frontends: add Socionext MN88443x ISDB-S/T demodulator driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#0f408ce8</link>
        <description>media: dvb-frontends: add Socionext MN88443x ISDB-S/T demodulator driverThis patch adds a frontend driver for the Socionext/PanasonicMN884434 and MN884433 ISDB-S/T demodulators.The maximum and minimum frequency of MN88443x comes fromISDB-S and ISDB-T so frequency range is the following:  - ISDB-S (BS/CS110 IF frequency, Local freq 10.678GHz)    - Min: BS-1: 1032MHz    - Max: ND24: 2070MHz  - ISDB-T    - Min: ch13: 470MHz    - Max: ch62: 770MHzSigned-off-by: Katsuhiro Suzuki &lt;suzuki.katsuhiro@socionext.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Mon, 23 Jul 2018 08:51:50 +0000</pubDate>
        <dc:creator>Katsuhiro Suzuki &lt;suzuki.katsuhiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>fe63a1a6 - media: dvb: fix location of get_dvb_firmware script</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#fe63a1a6</link>
        <description>media: dvb: fix location of get_dvb_firmware scriptThis script was moved out of Documentation/dvb, but thelinks weren&apos;t updated.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/dvb-frontends/Kconfig</description>
        <pubDate>Tue, 08 May 2018 21:10:05 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>2dc3e050 - media: ddbridge, cxd2099: include guard, fix unneeded NULL init, strings</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#2dc3e050</link>
        <description>media: ddbridge, cxd2099: include guard, fix unneeded NULL init, stringsThree really tiny minors in this single commit which all on their ownwould just clutter up the commit history unnecessarily:* ddbridge-regs.h is lacking an include guard. Add it.* Fix an unnecessary NULL initialisation in ddbridge-ci. The declaration  of the ci struct ptr is immediately followed by kzalloc().* Clarify that the CXD2099AR is a Sony device in the cxd2099 driver at a  few places including Kconfig.Signed-off-by: Daniel Scheller &lt;d.scheller@gmx.net&gt;Acked-by: Jasmin Jessich &lt;jasmin@anw.at&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Sat, 17 Mar 2018 14:55:32 +0000</pubDate>
        <dc:creator>Daniel Scheller &lt;d.scheller@gmx.net&gt;</dc:creator>
    </item>
<item>
        <title>22e59e72 - media: af9013: add i2c mux adapter for tuner bus</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#22e59e72</link>
        <description>media: af9013: add i2c mux adapter for tuner busAdd muxed i2c adapter for demod tuner i2c bus gate control.Signed-off-by: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Thu, 22 Jun 2017 16:18:21 +0000</pubDate>
        <dc:creator>Antti Palosaari &lt;crope@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>a31b86b1 - media: dvb-frontends/Kconfig: move the SP2 driver to the CI section</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#a31b86b1</link>
        <description>media: dvb-frontends/Kconfig: move the SP2 driver to the CI sectionThe CIMaX SP2 driver is a EN50221 CI controller I2C driver similar to thecxd2099 driver. Move it&apos;s Kconfig block into the newly introduced CIsubsection.Cc: Olli Salonen &lt;olli.salonen@iki.fi&gt;Cc: Antti Palosaari &lt;crope@iki.fi&gt;Signed-off-by: Daniel Scheller &lt;d.scheller@gmx.net&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Wed, 07 Mar 2018 19:23:48 +0000</pubDate>
        <dc:creator>Daniel Scheller &lt;d.scheller@gmx.net&gt;</dc:creator>
    </item>
<item>
        <title>d158490a - media: dvb-frontends/cxd2099: Kconfig additions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/media/dvb-frontends/Kconfig#d158490a</link>
        <description>media: dvb-frontends/cxd2099: Kconfig additionsThe cxd2099 driver makes use of the Regmap I2C kernel API, thus add&quot;select REGMAP_I2C&quot; to it&apos;s Kconfig block. Also, make it default &quot;m&quot; if!MEDIA_SUBDRV_AUTOSELECT, just like every other dvb-frontend driver.And, while at it, remove the hyphens around the help tag.Cc: Jasmin Jessich &lt;jasmin@anw.at&gt;Signed-off-by: Daniel Scheller &lt;d.scheller@gmx.net&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;

            List of files:
            /linux-6.15/drivers/media/dvb-frontends/Kconfig</description>
        <pubDate>Wed, 07 Mar 2018 19:23:47 +0000</pubDate>
        <dc:creator>Daniel Scheller &lt;d.scheller@gmx.net&gt;</dc:creator>
    </item>
</channel>
</rss>
