<?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>453b733c - staging: gpib: Remove dependencies on !X86_PAE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#453b733c</link>
        <description>staging: gpib: Remove dependencies on !X86_PAEThe dependecies on !X86_PAE were introduced to fix an i386build issue due to drivers casting resource_type_t to void *commit 48e8a8160dba (&quot;staging: gpib: Fix i386 build issue&quot;)Subsequentlycommit baf8855c9160 (&quot;staging: gpib: fix address space mixup&quot;)properly resolved these issues by fixing the code in thedrivers.Delete the lines &quot;depends on !X86_PAE&quot;Signed-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Link: https://lore.kernel.org/r/20250204174254.16576-1-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Tue, 04 Feb 2025 17:42:54 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7b66aae7 - staging: gpib: Remove depends on BROKEN</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#7b66aae7</link>
        <description>staging: gpib: Remove depends on BROKENThe build of drivers/staging/gpib/hp_82341 driver was failingwith:ERROR: modpost: &quot;isapnp_read_byte&quot;[drivers/staging/gpib/hp_82341/hp_82341.ko] undefined!The driver was marked BROKEN to fix this issueLink: https://lore.kernel.org/all/2024101412-outsider-icing-052e@gregkh/Remove the dependency on BROKENSigned-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Link: https://lore.kernel.org/linux-staging/20250122103859.25499-3-dpenkler@gmail.com/T/#uLink: https://lore.kernel.org/r/20250124105900.27592-4-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Fri, 24 Jan 2025 10:59:00 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>fec866a0 - staging: gpib: use ioport_map</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#fec866a0</link>
        <description>staging: gpib: use ioport_mapThe tnt4882 backend has a rather elabolate way of abstracting thePIO and MMIO based hardware variants, duplicating the functionalityof ioport_map() in a less portable way.Change it to use ioport_map() with ioread8()/iowrite8() to dothis more easily.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20241213064959.1045243-2-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Fri, 13 Dec 2024 06:49:50 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>edbb7200 - staging: gpib: fix pcmcia dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#edbb7200</link>
        <description>staging: gpib: fix pcmcia dependenciesWith CONFIG_PCMCIA=m, the gpib drivers that optionally support PCMCIAcannot be built-in.Add a Kconfig dependency to force these to be loadable modules aswell, and change the GPIB_PCMCIA symbol to have the correct statefor that.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20241213064959.1045243-1-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Fri, 13 Dec 2024 06:49:49 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>48e8a816 - staging: gpib: Fix i386 build issue</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#48e8a816</link>
        <description>staging: gpib: Fix i386 build issueThese drivers cast resource_type_t to void * causing the build to fail.With CONFIG_X86_PAE enabled the resource_size_t type is a 64bit unsignedint which cannot be cast to a 32 bit pointer.Disable these drivers if X68_PAE is enabledReported-by: Guenter Roeck &lt;linux@roeck-us.net&gt;Closes: https://lore.kernel.org/all/f10e976e-7a04-4454-b38d-39cd18f142da@roeck-us.net/Fixes: e9dc69956d4d (&quot;staging: gpib: Add Computer Boards GPIB driver&quot;)Fixes: e1339245eba3 (&quot;staging: gpib: Add Computer Equipment Corporation GPIB driver&quot;)Fixes: bb1bd92fa0f2 (&quot;staging: gpib: Add ines GPIB driver&quot;)Fixes: 0cd5b05551e0 (&quot;staging: gpib: Add TNT4882 chip based GPIB driver&quot;)Signed-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Link: https://lore.kernel.org/r/20241204162128.25617-1-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 04 Dec 2024 16:21:28 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>80242c4a - staging: gpib: Workaround for ppc build failure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#80242c4a</link>
        <description>staging: gpib: Workaround for ppc build failureMake GPIB_FMH depend on !PPCReported_by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Link: https://lore.kernel.org/all/20241015165538.634707e5@canb.auug.org.au/Link: https://lore.kernel.org/r/20241204134736.6660-1-dpenkler@gmail.comSigned-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 04 Dec 2024 13:47:36 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f580786e - staging: gpib: Make GPIB_NI_PCI_ISA depend on HAS_IOPORT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#f580786e</link>
        <description>staging: gpib: Make GPIB_NI_PCI_ISA depend on HAS_IOPORTAfter commit 78ecb0375685 (&quot;staging: gpib: make port I/O codeconditional&quot;), building tnt4882.ko on platforms without HAS_IOPORT (suchas hexagon and s390) fails with:  ERROR: modpost: &quot;inb_wrapper&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!  ERROR: modpost: &quot;inw_wrapper&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!  ERROR: modpost: &quot;nec7210_locking_ioport_write_byte&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!  ERROR: modpost: &quot;nec7210_locking_ioport_read_byte&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!  ERROR: modpost: &quot;outb_wrapper&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!  ERROR: modpost: &quot;outw_wrapper&quot; [drivers/staging/gpib/tnt4882/tnt4882.ko] undefined!Only allow tnt4882.ko to be built when CONFIG_HAS_IOPORT is set to avoidthis build failure, as this driver unconditionally needs it.Fixes: 78ecb0375685 (&quot;staging: gpib: make port I/O code conditional&quot;)Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Tested-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Link: https://lore.kernel.org/r/20241123-gpib-tnt4882-depends-on-has_ioport-v1-1-033c58b64751@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Sat, 23 Nov 2024 20:03:25 +0000</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0f95c181 - staging: gpib: Fix Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#0f95c181</link>
        <description>staging: gpib: Fix KconfigThe NI_PCI_ISA driver also supports PCI and PCMCIACorrect typo COMPIlE_TESTFixes: 2c9f5d8c6ece (&quot;staging: gpib: add bus specific Kconfig dependencies&quot;)Signed-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Reviewed-by: Dan Carpenter &lt;dan.carpenter@linaro.org&gt;Link: https://lore.kernel.org/r/20241104175014.12317-9-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Mon, 04 Nov 2024 17:50:09 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a836d4ec - staging: gpib: Replace custom debug with dev_dbg</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#a836d4ec</link>
        <description>staging: gpib: Replace custom debug with dev_dbgRemove GPIB_KERNEL_DEBUG config optionRemove GPIB_DEBUG referenceReplace GPIB_DPRINTK with dev_dbgChange pr_alert to dev_alertSigned-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Reviewed-by: Dan Carpenter &lt;dan.carpenter@linaro.org&gt;Link: https://lore.kernel.org/r/20241104175014.12317-3-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Mon, 04 Nov 2024 17:50:03 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0ed8194a - staging: gpib: cb7210: select NEC7210 library</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#0ed8194a</link>
        <description>staging: gpib: cb7210: select NEC7210 libraryThe nec7210 library module is required to build cb7210:ERROR: modpost: &quot;nec7210_write&quot; [drivers/staging/gpib/cb7210/cb7210.ko] undefined!ERROR: modpost: &quot;nec7210_read&quot; [drivers/staging/gpib/cb7210/cb7210.ko] undefined!ERROR: modpost: &quot;nec7210_command&quot; [drivers/staging/gpib/cb7210/cb7210.ko] undefined!ERROR: modpost: &quot;nec7210_take_control&quot; [drivers/staging/gpib/cb7210/cb7210.ko] undefined!Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20241016111521.1143191-8-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 16 Oct 2024 11:15:21 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>2c9f5d8c - staging: gpib: add bus specific Kconfig dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#2c9f5d8c</link>
        <description>staging: gpib: add bus specific Kconfig dependenciesA number of GPIB drivers fail to build when CONFIG_HAS_IOPORT is disabled,which can be avoided with a CONFIG_ISA_BUS or CONFIG_PCMCIA dependency.For completeness, mark all of the new device drivers with a dependencyon whichever bus they use, and hide the symbols for chip drivers thatare already selected by teh device drivers using them.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20241016111521.1143191-6-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 16 Oct 2024 11:15:19 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>afa0ab04 - staging: gpib: mark FMH driver as broken</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#afa0ab04</link>
        <description>staging: gpib: mark FMH driver as brokenWhen doing a &apos;make allyesconfig&apos; things break in this driver due toduplicate symbols, so mark it broken for now until that can be fixed up.Cc: Dave Penkler &lt;dpenkler@gmail.com&gt;Reported-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Link: https://lore.kernel.org/r/20241015165538.634707e5@canb.auug.org.auLink: https://lore.kernel.org/r/2024101628-jazz-radial-3400@gregkhSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 16 Oct 2024 07:48:28 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>e0eb7cc4 - staging: gpib: mark HP82341 driver as broken</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#e0eb7cc4</link>
        <description>staging: gpib: mark HP82341 driver as brokenThe hp82341 driver uses the isapnp_read_byte() call, but it&apos;s notexported for modules at this point in time:ERROR: modpost: &quot;isapnp_read_byte&quot; [drivers/staging/gpib/hp_82341/hp_82341.ko] undefined!So mark it as broken for now, it can be fixed and cleaned up later.Link: https://lore.kernel.org/r/20241014162054.2b91b5af@canb.auug.org.auReported-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Cc: Dave Penkler &lt;dpenkler@gmail.com&gt;Link: https://lore.kernel.org/r/2024101412-outsider-icing-052e@gregkhSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Mon, 14 Oct 2024 08:54:13 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b06f8249 - staging: gpib: disable CONFIG_GPIB_KERNEL_DEBUG</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#b06f8249</link>
        <description>staging: gpib: disable CONFIG_GPIB_KERNEL_DEBUGIt breaks the build so disable that option for now.It shouldn&apos;t be needed anyway, the normal in-kernel debugging facilitiesshould be used instead.Cc: Dave Penkler &lt;dpenkler@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Thu, 10 Oct 2024 13:26:51 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>165e8cc3 - staging: gpib: Add KBUILD files for GPIB drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/staging/gpib/Kconfig#165e8cc3</link>
        <description>staging: gpib: Add KBUILD files for GPIB driversTop level Kconfig and Makefiles.Cc: Peter Bosch &lt;peterbosc@gmail.com&gt;Signed-off-by: Dave Penkler &lt;dpenkler@gmail.com&gt;Link: https://lore.kernel.org/r/20240918121908.19366-3-dpenkler@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/staging/gpib/Kconfig</description>
        <pubDate>Wed, 18 Sep 2024 12:18:49 +0000</pubDate>
        <dc:creator>Dave Penkler &lt;dpenkler@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
