<?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>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0903102f - Clean up the net/caif/Kconfig menu</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#0903102f</link>
        <description>Clean up the net/caif/Kconfig menuClean up the net/caif/Kconfig menu:- remove extraneous space- minor language tweaks- fix punctuationSigned-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Tue, 01 Oct 2019 23:03:59 +0000</pubDate>
        <dc:creator>rd.dunlab@gmail.com &lt;rd.dunlab@gmail.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/net/caif/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/net/caif/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>d132d7f6 - Kconfig: replace &quot;--- help ---&quot; with &quot;---help---&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#d132d7f6</link>
        <description>Kconfig: replace &quot;--- help ---&quot; with &quot;---help---&quot;There are three Kconfig entries with &quot;--- help ---&quot; attributes, and over2000 Kconfig entries with &quot;---help---&quot; attributes.  Apparently the threeattributes with embedded spaces are valid. Still, I see little reasonfor using this obscure variant. And replacing those three attributeswith the common variant makes grepping Kconfig files for help texts abit easier too.Signed-off-by: Paul Bolle &lt;pebolle@tiscali.nl&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Mon, 07 May 2012 09:14:59 +0000</pubDate>
        <dc:creator>Paul Bolle &lt;pebolle@tiscali.nl&gt;</dc:creator>
    </item>
<item>
        <title>7ad65bf6 - caif: Add support for CAIF over CDC NCM USB interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#7ad65bf6</link>
        <description>caif: Add support for CAIF over CDC NCM USB interfaceNCM 1.0 does not support anything but Ethernet framing, henceCAIF payload will be put into Ethernet frames.Discovery is based on fixed USB vendor 0x04cc (ST-Ericsson),product-id 0x230f (NCM). In this variant only CAIF payload is sent overthe NCM interface.The CAIF stack (cfusbl.c) will when USB interface register first check ifwe got a CDC NCM USB interface with the right VID, PID.It will then read the device&apos;s Ethernet address and create a &apos;template&apos;Ethernet TX header, using a broadcast address as the destination address,and EthType 0x88b5 (802.1 Local Experimental - vendor specific).A protocol handler for 0x88b5 is setup for reception of CAIF frames fromthe CDC NCM USB interface.Signed-off-by: Sjur Br&#230;ndeland &lt;sjur.brandeland@stericsson.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Sun, 04 Dec 2011 11:22:53 +0000</pubDate>
        <dc:creator>sjur.brandeland@stericsson.com &lt;sjur.brandeland@stericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>01eebb53 - caif: Kconfig and Makefile fixes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#01eebb53</link>
        <description>caif: Kconfig and Makefile fixesUse &quot;depends on&quot; instead of &quot;if&quot; in Kconfig files.Fixed CAIF debug flag, and removed unnecessary clean-* options.Signed-off-by: Sjur Braendeland &lt;sjur.brandeland@stericsson.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Sat, 26 Jun 2010 11:31:28 +0000</pubDate>
        <dc:creator>Sjur Braendeland &lt;sjur.brandeland@stericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>eb1669ae - net-caif: drop redundant Kconfig entries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#eb1669ae</link>
        <description>net-caif: drop redundant Kconfig entriesThere is already a submenu entry that is always displayed, so there isno need to also show a dedicated CAIF comment.Drop dead commented code while we&apos;re here, and change the submenu textto better match the style everyone else is using.Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Fri, 21 May 2010 10:45:20 +0000</pubDate>
        <dc:creator>Mike Frysinger &lt;vapier@gentoo.org&gt;</dc:creator>
    </item>
<item>
        <title>3908c690 - net-caif: add CAIF Kconfig and Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/caif/Kconfig#3908c690</link>
        <description>net-caif: add CAIF Kconfig and MakefilesKconfig and Makefiles with options for:CAIF:        Including caifCAIF_DEBUG:  CAIF DebugCAIF_NETDEV: CAIF Network Device for GPRS ContextsSigned-off-by: Sjur Braendeland &lt;sjur.brandeland@stericsson.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/caif/Kconfig</description>
        <pubDate>Tue, 30 Mar 2010 13:56:28 +0000</pubDate>
        <dc:creator>Sjur Braendeland &lt;sjur.brandeland@stericsson.com&gt;</dc:creator>
    </item>
</channel>
</rss>
