<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/drivers/net/wireless/ath/ath9k/common-debug.c, branch linux-6.9.y</title>
<subtitle>Hosts the 0x221E linux distro kernel.</subtitle>
<id>https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-6.9.y</id>
<link rel='self' href='https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-6.9.y'/>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/'/>
<updated>2020-12-07T16:13:18Z</updated>
<entry>
<title>ath9k: remove trailing semicolon in macro definition</title>
<updated>2020-12-07T16:13:18Z</updated>
<author>
<name>Tom Rix</name>
<email>trix@redhat.com</email>
</author>
<published>2020-12-07T14:16:24Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=5a5b820d18c76b3a8089c44d63bccd1b52f743a5'/>
<id>urn:sha1:5a5b820d18c76b3a8089c44d63bccd1b52f743a5</id>
<content type='text'>
The macro use will already have a semicolon.

Signed-off-by: Tom Rix &lt;trix@redhat.com&gt;
Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;
Link: https://lore.kernel.org/r/20201127175336.2752730-1-trix@redhat.com
</content>
</entry>
<entry>
<title>ath9k: add counters for good and errorneous FFT/spectral frames</title>
<updated>2018-10-02T04:43:32Z</updated>
<author>
<name>Simon Wunderlich</name>
<email>sw@simonwunderlich.de</email>
</author>
<published>2018-10-01T14:26:42Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=03224678c0134bd5811b81919a4d39a8fbe03244'/>
<id>urn:sha1:03224678c0134bd5811b81919a4d39a8fbe03244</id>
<content type='text'>
This is helpful to see whether spectral samples get discarded.

Signed-off-by: Simon Wunderlich &lt;sw@simonwunderlich.de&gt;
Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;
</content>
</entry>
<entry>
<title>wireless: Use octal not symbolic permissions</title>
<updated>2018-03-27T08:01:13Z</updated>
<author>
<name>Joe Perches</name>
<email>joe@perches.com</email>
</author>
<published>2018-03-23T22:54:37Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=2ef00c53049b6a8758d118188992da01d75f3628'/>
<id>urn:sha1:2ef00c53049b6a8758d118188992da01d75f3628</id>
<content type='text'>
Prefer the direct use of octal for permissions.

Done with checkpatch -f --types=SYMBOLIC_PERMS --fix-inplace
and some typing.

Miscellanea:

o Whitespace neatening around these conversions.

Signed-off-by: Joe Perches &lt;joe@perches.com&gt;
Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;
</content>
</entry>
<entry>
<title>ath9k: fix phyerror codes</title>
<updated>2015-10-28T18:57:13Z</updated>
<author>
<name>Zefir Kurtisi</name>
<email>zefir.kurtisi@neratec.com</email>
</author>
<published>2015-10-20T12:19:26Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=56bae464275ac57cbf993f3ed15e96d6e1ec00a2'/>
<id>urn:sha1:56bae464275ac57cbf993f3ed15e96d6e1ec00a2</id>
<content type='text'>
Some of the ath9k_phyerr enums were wrong from the
beginning (and even before). Most of the time the
codes were used for counters to be displayed over
debugfs, which made this a non-functional issue.

Some (e.g. ATH9K_PHYERR_FALSE_RADAR_EXT) are used
for radar detection and require the correct code
to work as intended.

This patch includes:
a) fixes
  ATH9K_PHYERR_FALSE_RADAR_EXT:    24 =&gt; 36
  ATH9K_PHYERR_CCK_LENGTH_ILLEGAL: 32 =&gt; 28
  ATH9K_PHYERR_CCK_POWER_DROP:     33 =&gt; 29
  ATH9K_PHYERR_HT_CRC_ERROR:       34 =&gt; 32
  ATH9K_PHYERR_HT_LENGTH_ILLEGAL:  35 =&gt; 33
  ATH9K_PHYERR_HT_RATE_ILLEGAL:    36 =&gt; 34

b) extensions
  ATH9K_PHYERR_CCK_BLOCKER = 24
  ATH9K_PHYERR_HT_ZLF      = 35
  ATH9K_PHYERR_GREEN_FIELD = 37

Aside from the correction and completion made in
the enum, the patch also extends the display of
the related counters in the debugfs.

Signed-off-by: Zefir Kurtisi &lt;zefir.kurtisi@neratec.com&gt;
Signed-off-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;
</content>
</entry>
<entry>
<title>ath9k: move phy_err to ath9k_cmn_debug_phy_err</title>
<updated>2014-05-13T19:56:42Z</updated>
<author>
<name>Oleksij Rempel</name>
<email>linux@rempel-privat.de</email>
</author>
<published>2014-05-11T08:04:39Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=e02912cdd6b364a61fe80353d293c66faee30bba'/>
<id>urn:sha1:e02912cdd6b364a61fe80353d293c66faee30bba</id>
<content type='text'>
Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
<entry>
<title>ath9k: move recv to ath9k_cmn_debug_recv</title>
<updated>2014-05-13T19:56:41Z</updated>
<author>
<name>Oleksij Rempel</name>
<email>linux@rempel-privat.de</email>
</author>
<published>2014-05-11T08:04:37Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=87ea9b0b3ce1200ef5900e561ffdfea9702af9cd'/>
<id>urn:sha1:87ea9b0b3ce1200ef5900e561ffdfea9702af9cd</id>
<content type='text'>
Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
<entry>
<title>ath9k &amp; ath9k_htc: move ath_rx_stats to cmn</title>
<updated>2014-05-13T19:56:40Z</updated>
<author>
<name>Oleksij Rempel</name>
<email>linux@rempel-privat.de</email>
</author>
<published>2014-05-11T08:04:36Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=b5a0c86a56e4494eab84b142ab5501eb62685150'/>
<id>urn:sha1:b5a0c86a56e4494eab84b142ab5501eb62685150</id>
<content type='text'>
and use it. This move need changes in both drivers.

Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
<entry>
<title>ath9k: move base_eeprom debug code to ath9k_cmn_debug_base_eeprom</title>
<updated>2014-05-13T19:56:38Z</updated>
<author>
<name>Oleksij Rempel</name>
<email>linux@rempel-privat.de</email>
</author>
<published>2014-05-11T08:04:33Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=29bf801e04514929aeec768d237c62ae37564041'/>
<id>urn:sha1:29bf801e04514929aeec768d237c62ae37564041</id>
<content type='text'>
Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
<entry>
<title>ath9k-common: create common-debug and move modal_eeprom to cmn</title>
<updated>2014-05-13T19:56:36Z</updated>
<author>
<name>Oleksij Rempel</name>
<email>linux@rempel-privat.de</email>
</author>
<published>2014-05-11T08:04:31Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=f2c3c952a5966e734f600e772ed65b5d34033891'/>
<id>urn:sha1:f2c3c952a5966e734f600e772ed65b5d34033891</id>
<content type='text'>
Signed-off-by: Oleksij Rempel &lt;linux@rempel-privat.de&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
</feed>
