<?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>a29689e6 - net: handle HAS_IOPORT dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#a29689e6</link>
        <description>net: handle HAS_IOPORT dependenciesIn a future patch HAS_IOPORT=n will disable inb()/outb() and friends atcompile time. We thus need to add HAS_IOPORT as dependency forthose drivers requiring them. For the DEFXX driver the use of I/Oports is optional and we only need to fence specific code paths. It alsoturns out that with HAS_IOPORT handled explicitly HAMRADIO does not needthe !S390 dependency and successfully builds the bpqether driver.Acked-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;Acked-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Acked-by: Maciej W. Rozycki &lt;macro@orcam.me.uk&gt;Co-developed-by: Arnd Bergmann &lt;arnd@kernel.org&gt;Signed-off-by: Arnd Bergmann &lt;arnd@kernel.org&gt;Signed-off-by: Niklas Schnelle &lt;schnelle@linux.ibm.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 05 Apr 2024 11:18:31 +0000</pubDate>
        <dc:creator>Niklas Schnelle &lt;schnelle@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>84c19e65 - hamradio: baycom: remove useless link in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#84c19e65</link>
        <description>hamradio: baycom: remove useless link in KconfigThe Kconfig help text for baycom drivers suggests that more informationon the hardware can be found at &lt;https://www.baycom.de&gt;. The website nowincludes no information on their ham radio products other than a mentionthat they were once produced by the company, saying:&quot;The amateur radio equipment is now no longer part and business of BayCom GmbH&quot;As there is no information relavent to the baycom driver on the site,remove the link.Signed-off-by: Peter Lafreniere &lt;peter@n8pjl.ca&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Tue, 19 Sep 2023 14:14:23 +0000</pubDate>
        <dc:creator>Peter Lafreniere &lt;peter@n8pjl.ca&gt;</dc:creator>
    </item>
<item>
        <title>fcd4843a - hamradio: drop ISA_DMA_API dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#fcd4843a</link>
        <description>hamradio: drop ISA_DMA_API dependencyIt looks like the dependency got added accidentally in commit a553260618d8(&quot;[PATCH] ISA DMA Kconfig fixes - part 3&quot;). Unlike the previously removeddmascc driver, the scc driver never used DMA.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Mon, 17 Apr 2023 20:50:55 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>865e2eb0 - net: hamradio: remove support for DMA SCC devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#865e2eb0</link>
        <description>net: hamradio: remove support for DMA SCC devicesAnother incarnation of Z8530, looks like? Again, no real changesin the git history, and it needs VIRT_TO_BUS. Unlikely to haveusers, let&apos;s spend less time refactoring dead code...Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Tue, 26 Apr 2022 17:54:36 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>05e97b3d - dmascc: add CONFIG_VIRT_TO_BUS dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#05e97b3d</link>
        <description>dmascc: add CONFIG_VIRT_TO_BUS dependencyMany architectures don&apos;t define virt_to_bus() any more, as driversshould be using the dma-mapping interfaces where possible:In file included from drivers/net/hamradio/dmascc.c:27:drivers/net/hamradio/dmascc.c: In function &apos;tx_on&apos;:drivers/net/hamradio/dmascc.c:976:30: error: implicit declaration of function &apos;virt_to_bus&apos;; did you mean &apos;virt_to_fix&apos;? [-Werror=implicit-function-declaration]  976 |                              virt_to_bus(priv-&gt;tx_buf[priv-&gt;tx_tail]) + n);      |                              ^~~~~~~~~~~arch/arm/include/asm/dma.h:109:52: note: in definition of macro &apos;set_dma_addr&apos;  109 |         __set_dma_addr(chan, (void *)__bus_to_virt(addr))      |                                                    ^~~~Add the Kconfig dependency to prevent this from being built onarchitectures without virt_to_bus().Fixes: bc1abb9e55ce (&quot;dmascc: use proper &apos;virt_to_bus()&apos; rather than casting to &apos;int&apos;&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Mon, 27 Sep 2021 14:15:24 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>f05c43e0 - docs: networking: move baycom to the hw driver section</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#f05c43e0</link>
        <description>docs: networking: move baycom to the hw driver sectionMove baycom to hamradio.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 26 Jun 2020 17:27:26 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>14474950 - docs: networking: move z8530 to the hw driver section</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#14474950</link>
        <description>docs: networking: move z8530 to the hw driver sectionMove z8530 docs to hamradio and wan subdirectories.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 26 Jun 2020 17:27:25 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<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/net/hamradio/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/net/hamradio/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>0046db09 - docs: networking: convert z8530drv.txt to ReST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#0046db09</link>
        <description>docs: networking: convert z8530drv.txt to ReST- add SPDX header;- use copyright symbol;- adjust titles and chapters, adding proper markups;- mark tables as such;- mark code blocks and literals as such;- adjust identation, whitespaces and blank lines where needed;- add to networking/index.rst.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 01 May 2020 14:44:33 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b5fcf32d - docs: networking: convert baycom.txt to ReST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#b5fcf32d</link>
        <description>docs: networking: convert baycom.txt to ReST- add SPDX header;- adjust titles and chapters, adding proper markups;- mark code blocks and literals as such;- mark tables as such;- adjust identation, whitespaces and blank lines;- add to networking/index.rst.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Mon, 27 Apr 2020 22:01:23 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a434aaba - docs: networking: convert 6pack.txt to ReST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#a434aaba</link>
        <description>docs: networking: convert 6pack.txt to ReST- add SPDX header;- use title markups;- mark code blocks and literals as such;- adjust identation, whitespaces and blank lines;- add to networking/index.rst.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Mon, 27 Apr 2020 22:01:17 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@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/net/hamradio/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/net/hamradio/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>4f73bc4d - tty: Added a CONFIG_TTY option to allow removal of TTY</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#4f73bc4d</link>
        <description>tty: Added a CONFIG_TTY option to allow removal of TTYThe option allows you to remove TTY and compile without errors. Thissaves space on systems that won&apos;t support TTY interfaces anyway.bloat-o-meter output is below.The bulk of this patch consists of Kconfig changes adding &quot;depends onTTY&quot; to various serial devices and similar drivers that require the TTYlayer.  Ideally, these dependencies would occur on a common intermediatesymbol such as SERIO, but most drivers &quot;select SERIO&quot; rather than&quot;depends on SERIO&quot;, and &quot;select&quot; does not respect dependencies.bloat-o-meter output comparing our previous minimal to new minimal byremoving TTY.  The list is filtered to not show removed entries with awk&apos;$3 != &quot;-&quot;&apos; as the list was very long.add/remove: 0/226 grow/shrink: 2/14 up/down: 6/-35356 (-35350)function                                     old     new   deltachr_dev_init                                 166     170      +4allow_signal                                  80      82      +2static.__warned                              143     142      -1disallow_signal                               63      62      -1__set_special_pids                            95      94      -1unregister_console                           126     121      -5start_kernel                                 546     541      -5register_console                             593     588      -5copy_from_user                                45      40      -5sys_setsid                                   128     120      -8sys_vhangup                                   32      19     -13do_exit                                     1543    1526     -17bitmap_zero                                   60      40     -20arch_local_irq_save                          137     117     -20release_task                                 674     652     -22static.spin_unlock_irqrestore                308     260     -48Signed-off-by: Joe Millenbach &lt;jmillenbach@gmail.com&gt;Reviewed-by: Jamey Sharp &lt;jamey@minilop.net&gt;Reviewed-by: Josh Triplett &lt;josh@joshtriplett.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 18 Jan 2013 06:44:22 +0000</pubDate>
        <dc:creator>Joe Millenbach &lt;jmillenbach@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>631dd1a8 - Update broken web addresses in the kernel.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#631dd1a8</link>
        <description>Update broken web addresses in the kernel.The patch below updates broken web addresses in the kernelSigned-off-by: Justin P. Mattock &lt;justinmattock@gmail.com&gt;Cc: Maciej W. Rozycki &lt;macro@linux-mips.org&gt;Cc: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Cc: Finn Thain &lt;fthain@telegraphics.com.au&gt;Cc: Randy Dunlap &lt;rdunlap@xenotime.net&gt;Cc: Matt Turner &lt;mattst88@gmail.com&gt;Cc: Dimitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;Cc: Mike Frysinger &lt;vapier.adi@gmail.com&gt;Acked-by: Ben Pfaff &lt;blp@cs.stanford.edu&gt;Acked-by: Hans J. Koch &lt;hjk@linutronix.de&gt;Reviewed-by: Finn Thain &lt;fthain@telegraphics.com.au&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Mon, 18 Oct 2010 09:03:14 +0000</pubDate>
        <dc:creator>Justin P. Mattock &lt;justinmattock@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>646b1c9d - Documentation: Fix erroneous &quot;dmascc=&quot; documentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#646b1c9d</link>
        <description>Documentation: Fix erroneous &quot;dmascc=&quot; documentationSigned-off-by: Robert P. J. Day &lt;rpjday@mindspring.com&gt;Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 19 Oct 2007 22:11:36 +0000</pubDate>
        <dc:creator>Robert P. J. Day &lt;rpjday@mindspring.com&gt;</dc:creator>
    </item>
<item>
        <title>1591275c - Fix &quot;deprecated&quot; typoes.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#1591275c</link>
        <description>Fix &quot;deprecated&quot; typoes.Fix remaining misspellings of &quot;depreciated&quot; to &quot;deprecated.&quot;Signed-off-by: Robert P. J. Day &lt;rpjday@mindspring.com&gt;Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Wed, 09 May 2007 05:18:01 +0000</pubDate>
        <dc:creator>Robert P. J. Day &lt;rpjday@mindspring.com&gt;</dc:creator>
    </item>
<item>
        <title>6486abbf - fix the BAYCOM_SER_HDX help text</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#6486abbf</link>
        <description>fix the BAYCOM_SER_HDX help textThis fixes kernel Bugzilla #4076.Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Sat, 17 Feb 2007 18:42:17 +0000</pubDate>
        <dc:creator>Simon Depiets &lt;2df@tuxfamily.org&gt;</dc:creator>
    </item>
<item>
        <title>9d6ed921 - [PATCH] radio modems sitting on serial port are not for s390</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#9d6ed921</link>
        <description>[PATCH] radio modems sitting on serial port are not for s390Won&apos;t build (request_irq()/free_irq()), even if you manage to find ans390 box with 8250-compatible UART they are expecting.Signed-off-by: Al Viro &lt;viro@zeniv.linux.org.uk&gt;Acked-by: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Thu, 01 Feb 2007 13:52:59 +0000</pubDate>
        <dc:creator>Al Viro &lt;viro@ftp.linux.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>5793f4be - [PATCH] SMACK support for mkiss</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#5793f4be</link>
        <description>[PATCH] SMACK support for mkissSMACK (Stuttgart Modified Amateurradio CRC KISS) is a KISS variant thatuses CRC16 checksums to secure data transfers between the modem and host.It&apos;s also used to communicate over a pty to applications such as Wampes.Patches for Linux 2.4 by Thomas Osterried DL9SAU, upgraded to the latestmkiss 2.6 mkiss driver by me.Signed-off-by: Thomas Osterried DL9SAU &lt;thomas@x-berg.in-berlin.de&gt;Signed-off-by: Ralf Baechle DL5RB &lt;ralf@linux-mips.org&gt;Signed-off-by: Jeff Garzik &lt;jgarzik@pobox.com&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Fri, 14 Oct 2005 13:28:09 +0000</pubDate>
        <dc:creator>Ralf Baechle &lt;ralf@linux-mips.org&gt;</dc:creator>
    </item>
<item>
        <title>815f62bf - [PATCH] SMP rewrite of mkiss</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/hamradio/Kconfig#815f62bf</link>
        <description>[PATCH] SMP rewrite of mkissRewrite the mkiss driver to make it SMP-proof following the example of6pack.c.Signed-off-by: Ralf Baechle DL5RB &lt;ralf@linux-mips.org&gt;Signed-off-by: Jeff Garzik &lt;jgarzik@pobox.com&gt;

            List of files:
            /linux-6.15/drivers/net/hamradio/Kconfig</description>
        <pubDate>Wed, 24 Aug 2005 17:06:36 +0000</pubDate>
        <dc:creator>Ralf Baechle &lt;ralf@linux-mips.org&gt;</dc:creator>
    </item>
</channel>
</rss>
