<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0766789b - ath: fix SPDX tags</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#0766789b</link>
        <description>ath: fix SPDX tagsCommit ec8f24b7faaf (&quot;treewide: Add SPDX license identifier -Makefile/Kconfig&quot;) marked various Makefiles and Kconfig files within athdirectories as GPL-2.0. But these modules and drivers are actually ISC:* ath* ar5523* ath10k* ath5k* ath6kl* ath9k* wcn36xx* wil6210Fix SPDX tags accordingly.Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Tue, 25 Jun 2019 14:52:25 +0000</pubDate>
        <dc:creator>Kalle Valo &lt;kvalo@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-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/wireless/ath/ath5k/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>0e5d3ab5 - ath5k: revert AHB bus support removing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#0e5d3ab5</link>
        <description>ath5k: revert AHB bus support removingThis reverts commit 093ec3c5337434f40d77c1af06c139da3e5ba6dc.AHB bus code has been removed, since we did not have support AtherosAR231x SoC, required for building the AHB version of ath5k. Now thatsupport WiSoC chips added we can restore functionality back.Signed-off-by: Sergey Ryazanov &lt;ryazanov.s.a@gmail.com&gt;Acked-by: John W. Linville &lt;linville@tuxdriver.com&gt;Cc: Jiri Slaby &lt;jirislaby@gmail.com&gt;Cc: Nick Kossifidis &lt;mickflemm@gmail.com&gt;Cc: &quot;Luis R. Rodriguez&quot; &lt;mcgrof@do-not-panic.com&gt;Cc: linux-wireless@vger.kernel.orgCc: ath5k-devel@lists.ath5k.orgCc: Linux MIPS &lt;linux-mips@linux-mips.org&gt;Patchwork: https://patchwork.linux-mips.org/patch/8247/Signed-off-by: Ralf Baechle &lt;ralf@linux-mips.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Tue, 28 Oct 2014 23:18:48 +0000</pubDate>
        <dc:creator>Sergey Ryazanov &lt;ryazanov.s.a@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>093ec3c5 - ath5k: Remove AHB bus support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#093ec3c5</link>
        <description>ath5k: Remove AHB bus supportAHB bus support was added in v2.6.38, through commit a0b907ee2a71(&quot;ath5k: Add AHB bus support.&quot;). That code can only be build if theKconfig symbol ATHEROS_AR231X is set. But that symbol has never beenadded to the tree. So AHB bus support has always been dead code.Let&apos;s remove all code that depends on ATHEROS_AR231X. If that symbolever gets added to the tree the AHB bus support can be re-added too.Signed-off-by: Paul Bolle &lt;pebolle@tiscali.nl&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Wed, 10 Sep 2014 08:53:41 +0000</pubDate>
        <dc:creator>Paul Bolle &lt;pebolle@tiscali.nl&gt;</dc:creator>
    </item>
<item>
        <title>cc5569f6 - ath5k: use more idiomatic tracing include style</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#cc5569f6</link>
        <description>ath5k: use more idiomatic tracing include stylePretty much everywhere that uses a trace definitionheader that&apos;s not in include/trace/events/ uses themake system for the include path rather than puttingit into the sources, so do that in ath5k as well.This came up during backporting work (where this isrequired), but since all other drivers do it thisway upstream it seemed applicable.Signed-off-by: Johannes Berg &lt;johannes.berg@intel.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Thu, 11 Apr 2013 14:22:08 +0000</pubDate>
        <dc:creator>Johannes Berg &lt;johannes.berg@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cd2c5486 - ath5k: Move mac80211 functions into new file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#cd2c5486</link>
        <description>ath5k: Move mac80211 functions into new fileMove mac80211 functions into new file mac80211-ops.c to have a betterseparation and to make base.c smaller.Signed-off-by: Bruno Randolf &lt;br1@einfach.org&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Wed, 22 Dec 2010 10:20:32 +0000</pubDate>
        <dc:creator>Bruno Randolf &lt;br1@einfach.org&gt;</dc:creator>
    </item>
<item>
        <title>a0b907ee - ath5k: Add AHB bus support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#a0b907ee</link>
        <description>ath5k: Add AHB bus support.AHB specific functions are now in ahb.c file. AHB bus iscompiled in when CONFIG_ATHEROS_AR231X is set in kernel.All other platforms will use PCI bus.Signed-off-by: Felix Fietkau &lt;nbd@openwrt.org&gt;Signed-off-by: Wojciech Dubowik &lt;Wojciech.Dubowik@neratec.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Thu, 02 Dec 2010 09:27:16 +0000</pubDate>
        <dc:creator>Felix Fietkau &lt;nbd@openwrt.org&gt;</dc:creator>
    </item>
<item>
        <title>e5b046d8 - ath5k: Move PCI bus functions to separate file.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#e5b046d8</link>
        <description>ath5k: Move PCI bus functions to separate file.Signed-off-by: Felix Fietkau &lt;nbd@openwrt.org&gt;Signed-off-by: Wojciech Dubowik &lt;Wojciech.Dubowik@neratec.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Thu, 02 Dec 2010 09:27:01 +0000</pubDate>
        <dc:creator>Felix Fietkau &lt;nbd@openwrt.org&gt;</dc:creator>
    </item>
<item>
        <title>40ca22ea - ath5k: add sysfs files for ANI parameters</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#40ca22ea</link>
        <description>ath5k: add sysfs files for ANI parameters/sys/class/ieee80211/phy0/device/ani/ani_mode/sys/class/ieee80211/phy0/device/ani/noise_immunity_level/sys/class/ieee80211/phy0/device/ani/spur_level/sys/class/ieee80211/phy0/device/ani/firstep_level/sys/class/ieee80211/phy0/device/ani/ofdm_weak_signal_detection/sys/class/ieee80211/phy0/device/ani/cck_weak_signal_detection/sys/class/ieee80211/phy0/device/ani/noise_immunity_level_max/sys/class/ieee80211/phy0/device/ani/spur_level_max/sys/class/ieee80211/phy0/device/ani/firstep_level_maxsysfs has a lot of symlinks, so you can find the files also in other locations,like (by PCI ID) /sys/devices/pci0000:00/0000:00:11.0/ani and others.Signed-off-by: Bruno Randolf &lt;br1@einfach.org&gt;Acked-by: Nick Kossifidis &lt;mickflemm@gmail.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Wed, 19 May 2010 01:31:32 +0000</pubDate>
        <dc:creator>Bruno Randolf &lt;br1@einfach.org&gt;</dc:creator>
    </item>
<item>
        <title>2111ac0d - ath5k: Adaptive Noise Immunity (ANI) Implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#2111ac0d</link>
        <description>ath5k: Adaptive Noise Immunity (ANI) ImplementationThis is an Adaptive Noise Imunity (ANI) implementation for ath5k. I have lookedat both ath9k and HAL sources (they are nearly the same), and even though ihave implemented some things differently, the basic algorithm is practicallythe same, for now. I hope that this can serve as a clean start to improve thealgorithm later.This also adds a possibility to manually control ANI settings, right now onlythru a debugfs file:  * set lowest sensitivity (=highest noise immunity):	echo sens-low &gt; /sys/kernel/debug/ath5k/phy0/ani  * set highest sensitivity (=lowest noise immunity):	echo sens-high &gt; /sys/kernel/debug/ath5k/phy0/ani  * automatically control immunity (default):	echo ani-on &gt; /sys/kernel/debug/ath5k/phy0/ani  * to see the parameters in use and watch them change:	cat /sys/kernel/debug/ath5k/phy0/aniManually setting sensitivity will turn the automatic control off. You can alsocontrol each of the five immunity parameters (noise immunity, spur immunity,firstep, ofdm weak signal detection, cck weak signal detection) manually thruthe debugfs file.This is tested on AR5414 and nearly doubles the thruput in a noisy 2GHz band.Signed-off-by: Bruno Randolf &lt;br1@einfach.org&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Fri, 02 Apr 2010 09:44:08 +0000</pubDate>
        <dc:creator>Bruno Randolf &lt;br1@einfach.org&gt;</dc:creator>
    </item>
<item>
        <title>a6ae0716 - ath5k: minor rfkill cleanup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#a6ae0716</link>
        <description>ath5k: minor rfkill cleanupAlways enable rfkill since the ifdefs in the code is not really worththe Kconfig option.  Also fix a few code style things, and remove theusage of the ah_gpio[] array so we can remove it later.Signed-off-by: Bob Copeland &lt;me@bobcopeland.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Wed, 10 Jun 2009 03:43:11 +0000</pubDate>
        <dc:creator>Bob Copeland &lt;me@bobcopeland.com&gt;</dc:creator>
    </item>
<item>
        <title>e6a3b616 - ath5k: added cfg80211 based rfkill support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#e6a3b616</link>
        <description>ath5k: added cfg80211 based rfkill supportThis patch introduces initial rfkill support for the ath5k driverbased on rfkill support in the cfg80211 framework.All rfkill related code is separated into newly created rfkill.c.Changes to existing code are minimal:* added a new data structure ath5k_rfkill to the ath5k_softc structure* inserted calls to HW rfkill init/deinit routines* ath5k_intr() has been extended to handle AR5K_INT_GPIO interruptsSigned-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Tue, 09 Jun 2009 15:33:27 +0000</pubDate>
        <dc:creator>Tobias Doerffel &lt;tobias.doerffel@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>203c4805 - atheros: put atheros wireless drivers into ath/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath5k/Makefile#203c4805</link>
        <description>atheros: put atheros wireless drivers into ath/Signed-off-by: Luis R. Rodriguez &lt;lrodriguez@atheros.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath5k/Makefile</description>
        <pubDate>Tue, 31 Mar 2009 02:30:33 +0000</pubDate>
        <dc:creator>Luis R. Rodriguez &lt;lrodriguez@atheros.com&gt;</dc:creator>
    </item>
</channel>
</rss>
