<?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>d3aa8de6 - staging: axis-fifo: add unspecified HAS_IOMEM dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#d3aa8de6</link>
        <description>staging: axis-fifo: add unspecified HAS_IOMEM dependencyCurrently CONFIG_XIL_AXIS_FIFO=y implicitly depends onCONFIG_HAS_IOMEM=y; consequently, on architectures without IOMEM we getthe following build error:ld: drivers/staging/axis-fifo/axis-fifo.o: in function `axis_fifo_probe&apos;:drivers/staging/axis-fifo/axis-fifo.c:809: undefined reference to `devm_ioremap_resource&apos;Fix the build error by adding the unspecified dependency.Reported-by: Brendan Higgins &lt;brendanhiggins@google.com&gt;Signed-off-by: Brendan Higgins &lt;brendanhiggins@google.com&gt;Link: https://lore.kernel.org/r/20191211192742.95699-7-brendanhiggins@google.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Wed, 11 Dec 2019 19:27:41 +0000</pubDate>
        <dc:creator>Brendan Higgins &lt;brendanhiggins@google.com&gt;</dc:creator>
    </item>
<item>
        <title>031ba1fd - staging: remove redundant &apos;default n&apos; from Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#031ba1fd</link>
        <description>staging: remove redundant &apos;default n&apos; from Kconfig&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: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Fri, 12 Apr 2019 10:13:02 +0000</pubDate>
        <dc:creator>Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>827ad2c7 - staging: axis-fifo: Add elaborate description in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#827ad2c7</link>
        <description>staging: axis-fifo: Add elaborate description in Kconfig  - The Xilinx AXI-Stream FIFO IP core driver description is elaborated.  - References: Xilinx PG080 document, axis-fifo.txtSigned-off-by: Moses Christopher &lt;moseschristopherb@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Sat, 13 Apr 2019 16:29:03 +0000</pubDate>
        <dc:creator>Moses Christopher &lt;moseschristopherb@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>99b75a4e - staging: add missing SPDX lines to Kconfig files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#99b75a4e</link>
        <description>staging: add missing SPDX lines to Kconfig filesThere are a few remaining drivers/staging/*/Kconfig files that do nothave SPDX identifiers in them.  Add the correct GPL-2.0 identifier tothem to make scanning tools happy.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Tue, 02 Apr 2019 10:31:48 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>1beea620 - staging: axis-fifo: add CONFIG_OF dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#1beea620</link>
        <description>staging: axis-fifo: add CONFIG_OF dependencyWhen building without CONFIG_OF, the compiler loses track of the flowcontrol in axis_fifo_probe(), and thinks that many variables are usedwithout an initialization even though we actually leave the functionbefore the first use:drivers/staging/axis-fifo/axis-fifo.c: In function &apos;axis_fifo_probe&apos;:drivers/staging/axis-fifo/axis-fifo.c:900:5: error: &apos;rxd_tdata_width&apos; may be used uninitialized in this function [-Werror=maybe-uninitialized]  if (rxd_tdata_width != 32) {     ^drivers/staging/axis-fifo/axis-fifo.c:907:5: error: &apos;txd_tdata_width&apos; may be used uninitialized in this function [-Werror=maybe-uninitialized]  if (txd_tdata_width != 32) {     ^drivers/staging/axis-fifo/axis-fifo.c:914:5: error: &apos;has_tdest&apos; may be used uninitialized in this function [-Werror=maybe-uninitialized]  if (has_tdest) {     ^drivers/staging/axis-fifo/axis-fifo.c:919:5: error: &apos;has_tid&apos; may be used uninitialized in this function [-Werror=maybe-uninitialized]When CONFIG_OF is set, this does not happen, and since the driver cannotwork without it, just add that option as a Kconfig dependency.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Mon, 04 Mar 2019 19:43:00 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>4a965c5f - staging: add driver for Xilinx AXI-Stream FIFO v4.1 IP core</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/axis-fifo/Kconfig#4a965c5f</link>
        <description>staging: add driver for Xilinx AXI-Stream FIFO v4.1 IP coreThis IP core has read and write AXI-Stream FIFOs, the contents of which canbe accessed from the AXI4 memory-mapped interface. This is useful fortransferring data from a processor into the FPGA fabric. The driver createsa character device that can be read/written to with standardopen/read/write/close.See Xilinx PG080 document for IP details.https://www.xilinx.com/support/documentation/ip_documentation/axi_fifo_mm_s/v4_1/pg080-axi-fifo-mm-s.pdfThe driver currently supports only store-forward mode with a 32-bitAXI4 Lite interface. DOES NOT support:        - cut-through mode        - AXI4 (non-lite)Signed-off-by: Jacob Feder &lt;jacobsfeder@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/axis-fifo/Kconfig</description>
        <pubDate>Mon, 23 Jul 2018 01:27:37 +0000</pubDate>
        <dc:creator>Jacob Feder &lt;jacobsfeder@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
