<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/rtl8821ae, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/rtl8821ae?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/rtl8821ae?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2014-09-29T22:02:19Z</updated>
<entry>
<title>staging: rtl8821ae: remove driver</title>
<updated>2014-09-29T22:02:19Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2014-09-29T22:02:19Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=76272ab3f348d303eb31a5a061601ca8e0f9c5ce'/>
<id>urn:sha1:76272ab3f348d303eb31a5a061601ca8e0f9c5ce</id>
<content type='text'>
There is now a "real" driver in the wireless tree for this hardware
device, so remove the staging driver as it is no longer needed.

Reported-by: Larry Finger &lt;Larry.Finger@lwfinger.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8821ae: fix sparse warning for static declarations</title>
<updated>2014-09-29T02:03:58Z</updated>
<author>
<name>Mathieu OTHACEHE</name>
<email>m.othacehe@gmail.com</email>
</author>
<published>2014-09-24T15:32:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=80190ca3e17dc804ccf0a41580993563f136bcab'/>
<id>urn:sha1:80190ca3e17dc804ccf0a41580993563f136bcab</id>
<content type='text'>
This patch fixes the following sparse warnings:

drivers/staging/rtl8821ae/pci.c:52:4: warning: symbol '_rtl_mac_to_hwqueue' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:365:6: warning: symbol 'rtl_pci_check_buddy_priv' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:409:6: warning: symbol 'rtl_pci_get_linkcontrol_field' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:1748:6: warning: symbol 'rtl_pci_deinit' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:1763:5: warning: symbol 'rtl_pci_init' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:1780:5: warning: symbol 'rtl_pci_start' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:1814:6: warning: symbol 'rtl_pci_stop' was not declared. Should it be static?
drivers/staging/rtl8821ae/pci.c:2105:21: warning: symbol 'hw_export' was not declared. Should it be static?

Signed-off-by: Mathieu OTHACEHE &lt;m.othacehe@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8821ae: Fixes unnecessary return warning.</title>
<updated>2014-09-23T20:19:38Z</updated>
<author>
<name>Gulsah Kose</name>
<email>gulsah.1004@gmail.com</email>
</author>
<published>2014-09-21T13:44:49Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=b76e05869a6434b1af16880d1929230119f67b8b'/>
<id>urn:sha1:b76e05869a6434b1af16880d1929230119f67b8b</id>
<content type='text'>
This patch fixes "void function return statements are not generally
useful" checkpatch.pl warning in base.c

Signed-off-by: Gulsah Kose &lt;gulsah.1004@gmail.com&gt;
Acked-by: Daniel Baluta &lt;daniel.baluta@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: rtl8821ae: Fix warnings of no space before tabs.</title>
<updated>2014-09-20T00:48:06Z</updated>
<author>
<name>Aybuke Ozdemir</name>
<email>aybuke.147@gmail.com</email>
</author>
<published>2014-09-18T21:31:44Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=113f5f24c6be6f7d888946320d01b51b81aa213d'/>
<id>urn:sha1:113f5f24c6be6f7d888946320d01b51b81aa213d</id>
<content type='text'>
This patch fixes these warning messages found by checkpatch.pl:
WARNING: please, no space before tabs.

Signed-off-by: Aybuke Ozdemir &lt;aybuke.147@gmail.com&gt;
Reviewed-by: Josh Triplett &lt;josh@joshtriplett.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: rtl8821ae: Fix "foo * bar" warning.</title>
<updated>2014-09-20T00:48:05Z</updated>
<author>
<name>Aybuke Ozdemir</name>
<email>aybuke.147@gmail.com</email>
</author>
<published>2014-09-18T20:56:13Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=a45cbb78147e8f57250f1687f5b61470b8343a20'/>
<id>urn:sha1:a45cbb78147e8f57250f1687f5b61470b8343a20</id>
<content type='text'>
This patch fixes these error messages found by checkpatch.pl:
ERROR: "foo* bar" should be "foo *bar"

Signed-off-by: Aybuke Ozdemir &lt;aybuke.147@gmail.com&gt;
Reviewed-by: Josh Triplett &lt;josh@joshtriplett.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8821ae: Remove space after unary operator in efuse.c</title>
<updated>2014-09-19T23:10:40Z</updated>
<author>
<name>Fabien Malfoy</name>
<email>fabien.malfoy@laposte.net</email>
</author>
<published>2014-09-15T07:02:36Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=33b443e467f6c92c4cc797f5acf6a933fcfe9ec3'/>
<id>urn:sha1:33b443e467f6c92c4cc797f5acf6a933fcfe9ec3</id>
<content type='text'>
Several pointer declaration syntax have been fixed to match the coding style.

Signed-off-by: Fabien Malfoy &lt;fabien.malfoy@laposte.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers: staging: rtl8821ae: Fix '"(foo*)" should be "(foo *)"' errors</title>
<updated>2014-09-08T21:01:17Z</updated>
<author>
<name>Greg Donald</name>
<email>gdonald@gmail.com</email>
</author>
<published>2014-09-06T23:40:29Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=c1f870c68ae4076716a5a75a2509f2216112c563'/>
<id>urn:sha1:c1f870c68ae4076716a5a75a2509f2216112c563</id>
<content type='text'>
Fix checkpatch.pl '"(foo*)" should be "(foo *)"' errors

Signed-off-by: Greg Donald &lt;gdonald@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers: staging: rtl8821ae: Fix "space required before that '*'" errors</title>
<updated>2014-09-08T21:00:07Z</updated>
<author>
<name>Greg Donald</name>
<email>gdonald@gmail.com</email>
</author>
<published>2014-09-04T21:01:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=e676e0661d23cd9439f6627ff9718e44556020fc'/>
<id>urn:sha1:e676e0661d23cd9439f6627ff9718e44556020fc</id>
<content type='text'>
Fix checkpatch.pl "space required before that '*'" errors

Signed-off-by: Greg Donald &lt;gdonald@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: rtl8821ae: base: add missing blank line after declaration</title>
<updated>2014-09-08T20:48:01Z</updated>
<author>
<name>An Ha</name>
<email>zero579911@gmail.com</email>
</author>
<published>2014-09-03T22:33:08Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=2052d11cc53a3357e387a0c64c167327f7937429'/>
<id>urn:sha1:2052d11cc53a3357e387a0c64c167327f7937429</id>
<content type='text'>
Add a missing blank line after declaration to fix coding style issue.

Signed-off-by: An Ha &lt;zero579911@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: rtl8821ae: hal_bt_coexist: add a blank newline</title>
<updated>2014-09-08T20:45:23Z</updated>
<author>
<name>An Ha</name>
<email>zero579911@gmail.com</email>
</author>
<published>2014-09-03T01:00:46Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=99cbb4de442d4e72e73031c60a2fb7a9a9f986f0'/>
<id>urn:sha1:99cbb4de442d4e72e73031c60a2fb7a9a9f986f0</id>
<content type='text'>
Fix coding style issue which requires a blank line after declarations.

Signed-off-by: An Ha &lt;zero579911@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
