<?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/drivers/hsi/clients/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/drivers/hsi/clients/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>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/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/hsi/clients/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>f9c0d76e - HSI: nokia-modem: Add cmt-speech support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#f9c0d76e</link>
        <description>HSI: nokia-modem: Add cmt-speech supportRegister cmt-speech driver in nokia-modem driver and forwardhsi channel information.Acked-by: Aaro Koskinen &lt;aaro.koskinen@iki.fi&gt;Tested-by: Pavel Machek &lt;pavel@ucw.cz&gt;Signed-off-by: Sebastian Reichel &lt;sre@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Tue, 03 Mar 2015 00:14:41 +0000</pubDate>
        <dc:creator>Sebastian Reichel &lt;sre@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7f62fe8a - HSI: cmt_speech: Add cmt-speech driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#7f62fe8a</link>
        <description>HSI: cmt_speech: Add cmt-speech driverIntroduces the cmt-speech driver, which implementsa character device interface for transferring speechdata frames over HSI/SSI.The driver is used to exchange voice/speech data betweenthe Nokia N900/N950/N9&apos;s modem and its cpu.Signed-off-by: Kai Vehmanen &lt;kai.vehmanen@nokia.com&gt;Signed-off-by: Carlos Chinea &lt;carlos.chinea@nokia.com&gt;Signed-off-by: Joni Lapilainen &lt;joni.lapilainen@gmail.com&gt;Since the original driver has been written for 2.6.28 somebuild fixes and general cleanups have been added by me: * fix build for 4.0 kernel * replace GFP_ATOMIC with GFP_KERNEL in cs_alloc_cmds() * add sanity check for CS_SET_WAKELINE ioctl * cleanup driver initialisation * rename driver to cmt-speech to be consistent with   ssi-protocol driver * move cs-protocol.h to include/uapi/linux/hsi, since   it describes a userspace API * replace hardcoded channels numbers with values provided   via the HSI framework (e.g. coming from DT)Acked-by: Aaro Koskinen &lt;aaro.koskinen@iki.fi&gt;Tested-by: Pavel Machek &lt;pavel@ucw.cz&gt;Signed-off-by: Sebastian Reichel &lt;sre@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Wed, 02 Jun 2010 19:23:34 +0000</pubDate>
        <dc:creator>Kai Vehmanen &lt;kai.vehmanen@nokia.com&gt;</dc:creator>
    </item>
<item>
        <title>518e1624 - HSI: fix omap ssi driver dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#518e1624</link>
        <description>HSI: fix omap ssi driver dependencyThe SSI protocol implementation has an incorrect dependency on the OMAP_SSIdriver, which allows SSI to be built-in while the underlying OMAP_SSIimplementation is a loadable module, causing a link error.This changes the dependency to the simpler &apos;depends on OMAP_SSI&apos; that alsoensures that SSI-protocol can only be a module if OMAP_SSI is not built-in.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: Sebastian Reichel &lt;sre@kernel.org&gt;Cc: Ivaylo Dimitrov &lt;ivo.g.dimitrov.75@gmail.com&gt;Cc: Pavel Machek &lt;pavel@ucw.cz&gt;Signed-off-by: Sebastian Reichel &lt;sre@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Tue, 03 Jun 2014 15:14:01 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>eafaebd9 - HSI: Introduce Nokia N900 modem driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#eafaebd9</link>
        <description>HSI: Introduce Nokia N900 modem driverThe Nokia N900&apos;s modem is connected via Synchronous Serial Interface (SSI),which is a legacy version of MIPI&apos;s High-speed Synchronous Serial Interface(HSI).The handles the GPIOs for enabling and resetting the modem and instanciatesssi-protocol for data exchange. It does not yet support exchanging voice datawith the modem.Signed-off-by: Sebastian Reichel &lt;sre@kernel.org&gt;Reviewed-by: Pavel Machek &lt;pavel@ucw.cz&gt;Tested-By: Ivaylo Dimitrov &lt;ivo.g.dimitrov.75@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Fri, 28 Mar 2014 19:19:44 +0000</pubDate>
        <dc:creator>Sebastian Reichel &lt;sre@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>dc7bf5d7 - HSI: Introduce driver for SSI Protocol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#dc7bf5d7</link>
        <description>HSI: Introduce driver for SSI ProtocolThis adds a driver for the SSI McSAAB protocol as used inthe Nokia N900.Signed-off-by: Carlos Chinea &lt;carlos.chinea@nokia.com&gt;Signed-off-by: Sebastian Reichel &lt;sre@kernel.org&gt;Tested-By: Ivaylo Dimitrov &lt;ivo.g.dimitrov.75@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Fri, 15 Nov 2013 10:50:32 +0000</pubDate>
        <dc:creator>Sebastian Reichel &lt;sre@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f9e40201 - HSI: hsi_char: Add HSI char device kernel configuration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hsi/clients/Kconfig#f9e40201</link>
        <description>HSI: hsi_char: Add HSI char device kernel configurationAdd HSI character device kernel configurationSigned-off-by: Andras Domokos &lt;andras.domokos@nokia.com&gt;Signed-off-by: Carlos Chinea &lt;carlos.chinea@nokia.com&gt;

            List of files:
            /linux-6.15/drivers/hsi/clients/Kconfig</description>
        <pubDate>Wed, 21 Apr 2010 09:04:21 +0000</pubDate>
        <dc:creator>Andras Domokos &lt;andras.domokos@nokia.com&gt;</dc:creator>
    </item>
</channel>
</rss>
