<?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>d1747689 - wifi: ath9k: Remove -Warray-bounds exception</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#d1747689</link>
        <description>wifi: ath9k: Remove -Warray-bounds exceptionGCC-12 emits false positive -Warray-bounds warnings withCONFIG_UBSAN_SHIFT (-fsanitize=shift). This is fixed in GCC 13[1],and there is top-level Makefile logic to remove -Warray-bounds forknown-bad GCC versions staring with commit f0be87c42cbd (&quot;gcc-12: disable&apos;-Warray-bounds&apos; universally for now&quot;).Remove the local work-around.[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105679Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Acked-by: Toke H&#248;iland-J&#248;rgensen &lt;toke@toke.dk&gt;Signed-off-by: Kalle Valo &lt;quic_kvalo@quicinc.com&gt;Link: https://lore.kernel.org/r/20221006192054.1742982-1-keescook@chromium.org

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Thu, 06 Oct 2022 19:20:54 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>e9503298 - wifi: ath9k: silence array-bounds warning on GCC 12</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#e9503298</link>
        <description>wifi: ath9k: silence array-bounds warning on GCC 12GCC 12 says:drivers/net/wireless/ath/ath9k/mac.c: In function &#8216;ath9k_hw_resettxqueue&#8217;:drivers/net/wireless/ath/ath9k/mac.c:373:22: warning: array subscript 32 is above array bounds of &#8216;struct ath9k_tx_queue_info[10]&#8217; [-Warray-bounds]  373 |         qi = &amp;ah-&gt;txq[q];      |               ~~~~~~~^~~I don&apos;t know where it got the 32 from, relegate the warning to W=1+.Acked-by: Kalle Valo &lt;kvalo@kernel.org&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Fri, 20 May 2022 19:43:14 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5a4f2040 - ath9k: add loader for AR92XX (and older) pci(e)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#5a4f2040</link>
        <description>ath9k: add loader for AR92XX (and older) pci(e)Atheros cards with a AR92XX generation (and older) chip usuallystore their pci(e) initialization vectors on an external eeprom chip.However these chips technically don&apos;t need the eeprom chip attached,the AR9280 Datasheet in section &quot;6.1.2 DEVICE_ID&quot; describes that&quot;... if the EEPROM content is not valid, a value of 0xFF1C returnswhen read from the register&quot;. So, they will show up on the system&apos;spci bus. However in that state, ath9k can&apos;t load, since it relieson having the correct pci-id, otherwise it doesn&apos;t know what chip itactually is. This happens on many embedded devices like routersand accesspoint since they want to keep the BOM low and store thepci(e) initialization vectors together with the calibration dataon the system&apos;s FLASH, which is out of reach of the ath9k chip.Furthermore, Some devices (like the Cisco Meraki Z1 Cloud ManagedTeleworker Gateway) need to be able to initialize the PCIe wifi device.Normally, this should be done as a pci quirk during the early stages ofbooting linux. However, this isn&apos;t possible for devices which have theinit code for the Atheros chip stored on NAND in an UBI volume.Hence, this module can be used to initialize the chip when theuser-space is ready to extract the init code.Martin Blumenstingl prodived the following fixes:owl-loader: add support for OWL emulation PCI devicesowl-loader: don&apos;t re-scan the bus when ath9k_pci_fixup failedowl-loader: use dev_* instead of pr_* logging functionsowl-loader: auto-generate the eeprom filename as fallbackowl-loader: add a debug message when swapping the eeprom dataowl-loader: add missing newlines in log messagesReviewed-by: Julian Calaby &lt;julian.calaby@gmail.com&gt;Signed-off-by: Christian Lamparter &lt;chunkeey@gmail.com&gt;Signed-off-by: Martin Blumenstingl &lt;martin.blumenstingl@googlemail.com&gt;Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Fri, 05 Jul 2019 17:53:13 +0000</pubDate>
        <dc:creator>Christian Lamparter &lt;chunkeey@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0766789b - ath: fix SPDX tags</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/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/ath9k/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>9df7ddc3 - ath9k: move spectral scan support under a separate config symbol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#9df7ddc3</link>
        <description>ath9k: move spectral scan support under a separate config symbolAt the moment, spectral scan support, and with it RELAY, is always enabledwith ATH9K[_HTC]_DEBUGFS. Spectral scan support is currently the only userof RELAY in ath9k, and it unconditionally reserves a relay channel.Having debugfs support in ath9k is often useful even on very small embeddedrouters, where we&apos;d rather like to avoid the code size and RAM usage of therelay support.Signed-off-by: Matthias Schiffer &lt;mschiffer@universe-factory.net&gt;Signed-off-by: Kalle Valo &lt;kvalo@qca.qualcomm.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Mon, 27 Nov 2017 17:56:22 +0000</pubDate>
        <dc:creator>Matthias Schiffer &lt;mschiffer@universe-factory.net&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/ath9k/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/ath9k/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>1077ec47 - ath9k: move RELAY and DEBUG_FS to ATH9K[_HTC]_DEBUGFS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#1077ec47</link>
        <description>ath9k: move RELAY and DEBUG_FS to ATH9K[_HTC]_DEBUGFSCurrently, the common ath9k_common module needs to have adependency on RELAY and DEBUG_FS in order to built. Thisis usually not a problem. But for RAM and FLASH starvedAR71XX devices, every little bit counts.This patch adds a new symbol CONFIG_ATH9K_COMMON_DEBUGwhich makes it possible to drop the RELAY and DEBUG_FSdependency there and move it to ATH_(HTC)_DEBUGFS.Note: The shared FFT/spectral code (which is the only userof the relayfs in ath9k*) needs DEBUG_FS to export the relayfsinterface to dump the data to userspace. So it makes no senseto have the functions compiled in, if DEBUG_FS is not there.Signed-off-by: Christian Lamparter &lt;chunkeey@googlemail.com&gt;Signed-off-by: Kalle Valo &lt;kvalo@qca.qualcomm.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Thu, 12 Jan 2017 11:02:23 +0000</pubDate>
        <dc:creator>Christian Lamparter &lt;chunkeey@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>ed14dc0a - ath9k: feeding entropy in kernel from ADC capture</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#ed14dc0a</link>
        <description>ath9k: feeding entropy in kernel from ADC captureThis patch is derived fromcommit 6301566e0b2d (&quot;ath9k: export HW random number generator&quot;),We evaluated the entropy of the ADC data on QCA9531, QCA9561, QCA955x,and AR9340, and it has sufficient quality random data (at least 10 bitsand up to 22 bits of min-entropy for a 32-bit value). We conservativelyassume the min-entropy is 10 bits out of 32 bits. Thus, ATH9K_RNG_BUF_SIZEis set to 320 (u32) i.e., 1.25 kilobytes of data is inserted to fill upthe pool as soon as the entropy counter becomes 896/4096 (set by random.c).Since ADC was not designed to be a dedicated HW RNG, we do not want to bindit to /dev/hwrng framework directly. This patch feeds the entropy directlyfrom the WiFi driver to the input pool. The ADC register output is onlyused as a seed for the Linux entropy pool. No conditioning is needed,since all the conditioning is performed by the pool itself.Signed-off-by: Miaoqing Pan &lt;miaoqing@codeaurora.org&gt;Signed-off-by: Kalle Valo &lt;kvalo@qca.qualcomm.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Fri, 09 Oct 2015 09:06:45 +0000</pubDate>
        <dc:creator>Miaoqing Pan &lt;miaoqing@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>360d9bb5 - Revert &quot;ath9k: export HW random number generator&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#360d9bb5</link>
        <description>Revert &quot;ath9k: export HW random number generator&quot;This reverts commit 6301566e0b2dafa7d6779598621bca867962a0a2. Oleksij Rempelnoticed that the randomness doesn&apos;t look to be good enough and Stephan Muellercommented:&quot;I would say that the discussed RNG does not seem fit for hooking it up with thehwrandom framework.&quot;http://lkml.kernel.org/g/3945775.m5HblJPgiO@tauon.atsec.comSo let&apos;s the revert the patch until we are sure that we can trust this randomgenerator.Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Fri, 31 Jul 2015 07:17:35 +0000</pubDate>
        <dc:creator>Kalle Valo &lt;kvalo@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>6301566e - ath9k: export HW random number generator</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#6301566e</link>
        <description>ath9k: export HW random number generatorWe measured the FFT-based entropy in 3 ways, Shannon entropy,collision entropy, and directly measured min-entropy. Just tobe conservative, we recommend the estimated min-Entropy to be10 bits per 16-bit value.Analysis was done by Jacobson,David(djacobso@qti.qualcomm.com).Signed-off-by: Miaoqing Pan &lt;miaoqing@qca.qualcomm.com&gt;Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Wed, 15 Jul 2015 07:54:07 +0000</pubDate>
        <dc:creator>Miaoqing Pan &lt;miaoqing@qca.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>637625f2 - ath9k: Register private AIC ops</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#637625f2</link>
        <description>ath9k: Register private AIC opsAIC can be disabled or enabled on a per-cardbasis using MCI configuration, so register a functionto check its status.Signed-off-by: Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Sat, 14 Mar 2015 05:57:48 +0000</pubDate>
        <dc:creator>Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>67dc74f1 - ath9k: move spectral.* to common-spectral.*</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#67dc74f1</link>
        <description>ath9k: move spectral.* to common-spectral.*and rename exports from ath9k_spectral_* to ath9k_cmn_spectral_*Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Thu, 06 Nov 2014 07:53:30 +0000</pubDate>
        <dc:creator>Oleksij Rempel &lt;linux@rempel-privat.de&gt;</dc:creator>
    </item>
<item>
        <title>935477ed - ath9k_hw: make support for PC-OEM cards optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#935477ed</link>
        <description>ath9k_hw: make support for PC-OEM cards optionalThe initvals use up quite a bit of space, and PC-OEM support istypically not needed on embedded systemsSigned-off-by: Felix Fietkau &lt;nbd@openwrt.org&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Sat, 25 Oct 2014 15:19:26 +0000</pubDate>
        <dc:creator>Felix Fietkau &lt;nbd@openwrt.org&gt;</dc:creator>
    </item>
<item>
        <title>ce719152 - ath9k: add config for (en|dis)abling ACK timeout estimation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#ce719152</link>
        <description>ath9k: add config for (en|dis)abling ACK timeout estimationAdd ACK timeout estimation algorithm to ath9k Makefile and KconfigSigned-off-by: Lorenzo Bianconi &lt;lorenzo.bianconi83@gmail.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Tue, 16 Sep 2014 00:13:10 +0000</pubDate>
        <dc:creator>Lorenzo Bianconi &lt;lorenzo.bianconi83@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>fbbcd146 - ath9k: Add channel context structure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#fbbcd146</link>
        <description>ath9k: Add channel context structureThe channel context structure is defined to enablemulti-channel concurrency support.Signed-off-by: Felix Fietkau &lt;nbd@openwrt.org&gt;Signed-off-by: Rajkumar Manoharan &lt;rmanohar@qti.qualcomm.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Wed, 11 Jun 2014 10:47:49 +0000</pubDate>
        <dc:creator>Felix Fietkau &lt;nbd@openwrt.org&gt;</dc:creator>
    </item>
<item>
        <title>f2c3c952 - ath9k-common: create common-debug and move modal_eeprom to cmn</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#f2c3c952</link>
        <description>ath9k-common: create common-debug and move modal_eeprom to cmnSigned-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Sun, 11 May 2014 08:04:31 +0000</pubDate>
        <dc:creator>Oleksij Rempel &lt;linux@rempel-privat.de&gt;</dc:creator>
    </item>
<item>
        <title>cbbdf2ae - ath9k: move ath9k_beacon_config_sta to common-beacon</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#cbbdf2ae</link>
        <description>ath9k: move ath9k_beacon_config_sta to common-beaconSigned-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Sat, 01 Mar 2014 20:15:56 +0000</pubDate>
        <dc:creator>Oleksij Rempel &lt;linux@rempel-privat.de&gt;</dc:creator>
    </item>
<item>
        <title>13f71050 - ath9k: move ath9k_init_channels_rates to common-init</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#13f71050</link>
        <description>ath9k: move ath9k_init_channels_rates to common-initand rename it to ath9k_cmn_init_channels_rates.sbands are move to ath_common as well.Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Tue, 25 Feb 2014 13:48:50 +0000</pubDate>
        <dc:creator>Oleksij Rempel &lt;linux@rempel-privat.de&gt;</dc:creator>
    </item>
<item>
        <title>9e495a26 - ath9k: Remove ath9k rate control</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#9e495a26</link>
        <description>ath9k: Remove ath9k rate controlThere is no benefit in retaining the legacy rate control modulein the driver codebase.It is known to be buggy and has less than optimal performancein real-world environments compared with minstrel. The onlyreason that it was kept when we made the switch to minstrelas default was that it showed higher throughput numbers in aclean/ideal environment.This is no longer the case and minstrel can push ath9k tothe same throughput levels. In TCP, with 3-stream cards, more than295 Mbps can be obtained in open air, with 2-stream cards,210 Mbps is easily reached. To test performance issues,instead of using a broken rate control module, it is betterto use the fixed-rate interface provided by mac80211 anyway.The ath9k RC has not received any bug fixes in years and isjust bit-rotting away - this patch removes it.Signed-off-by: Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Thu, 06 Feb 2014 04:52:55 +0000</pubDate>
        <dc:creator>Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>1cdbaf0d - ath9k: Add an option for station statistics</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/wireless/ath/ath9k/Makefile#1cdbaf0d</link>
        <description>ath9k: Add an option for station statisticsAlso, rename node_stat to node_aggr.Signed-off-by: Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/drivers/net/wireless/ath/ath9k/Makefile</description>
        <pubDate>Mon, 13 Jan 2014 01:59:27 +0000</pubDate>
        <dc:creator>Sujith Manoharan &lt;c_manoha@qca.qualcomm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
