<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/rt2860/common, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/rt2860/common?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/rt2860/common?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2011-04-09T01:33:25Z</updated>
<entry>
<title>staging: rt2860sta and rt2870sta: Remove drivers replaced in net/wireless</title>
<updated>2011-04-09T01:33:25Z</updated>
<author>
<name>Larry Finger</name>
<email>Larry.Finger@lwfinger.net</email>
</author>
<published>2011-04-09T01:33:25Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=fefecc6989b4b24276797270c0e229c07be02ad3'/>
<id>urn:sha1:fefecc6989b4b24276797270c0e229c07be02ad3</id>
<content type='text'>
The staging driver rt2860sta is replaced by mainline driver rt2800pci, and
rt2870sta is replaced by rt2800usb. As a result, the staging drivers are
deleted.

Signed-off-by: Larry Finger &lt;Larry.Finger@lwfinger.net&gt;
---
</content>
</entry>
<entry>
<title>Fix common misspellings</title>
<updated>2011-03-31T14:26:23Z</updated>
<author>
<name>Lucas De Marchi</name>
<email>lucas.demarchi@profusion.mobi</email>
</author>
<published>2011-03-31T01:57:33Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=25985edcedea6396277003854657b5f3cb31a628'/>
<id>urn:sha1:25985edcedea6396277003854657b5f3cb31a628</id>
<content type='text'>
Fixes generated by 'codespell' and manually reviewed.

Signed-off-by: Lucas De Marchi &lt;lucas.demarchi@profusion.mobi&gt;
</content>
</entry>
<entry>
<title>staging: rt2860: Remove NULL check before kfree</title>
<updated>2011-03-14T18:57:33Z</updated>
<author>
<name>Ilia Mirkin</name>
<email>imirkin@alum.mit.edu</email>
</author>
<published>2011-03-13T05:29:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=aea9d72f97218d45e993836bcb6c6e6fd49e0b90'/>
<id>urn:sha1:aea9d72f97218d45e993836bcb6c6e6fd49e0b90</id>
<content type='text'>
This patch was generated by the following semantic patch:
// &lt;smpl&gt;
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);

@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// &lt;/smpl&gt;

Signed-off-by: Ilia Mirkin &lt;imirkin@alum.mit.edu&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>drivers:staging:rt2860 Remove one to many n's in a word.</title>
<updated>2011-03-01T03:00:30Z</updated>
<author>
<name>Justin P. Mattock</name>
<email>justinmattock@gmail.com</email>
</author>
<published>2011-02-27T04:33:59Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=1f2b472cc92d6178c5b24c12687783a0dedb9202'/>
<id>urn:sha1:1f2b472cc92d6178c5b24c12687783a0dedb9202</id>
<content type='text'>
The Patch below removes one to many "n's" in a word..

Signed-off-by: Justin P. Mattock &lt;justinmattock@gmail.com&gt;
CC: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
CC: Andy Shevchenko &lt;ext-andriy.shevchenko@nokia.com&gt;
CC: Jesper Juhl &lt;jj@chaosbits.net&gt;
CC: devel@driverdev.osuosl.org
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: rt2860: cmm_mac_pci.c change a typo comamnd to command</title>
<updated>2011-02-04T21:01:03Z</updated>
<author>
<name>Justin P. Mattock</name>
<email>justinmattock@gmail.com</email>
</author>
<published>2011-02-02T05:07:49Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=b977e29f825a4472520e78b61d92cc1f53d7ba80'/>
<id>urn:sha1:b977e29f825a4472520e78b61d92cc1f53d7ba80</id>
<content type='text'>
The below patch fixes a typo comamnd to command.

Signed-off-by: Justin P. Mattock &lt;justinmattock@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: rt2860: Sanitize DBGPRINT_ERR macro</title>
<updated>2010-12-16T20:17:29Z</updated>
<author>
<name>L. Alberto Giménez</name>
<email>agimenez@sysvalve.es</email>
</author>
<published>2010-12-14T01:01:55Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=8c3d90921604951e306a898669c46a88578c5848'/>
<id>urn:sha1:8c3d90921604951e306a898669c46a88578c5848</id>
<content type='text'>
Cleaner implementation. Avoids the need of the double parenthesis to call the
macro.

Signed-off-by: L. Alberto Giménez &lt;agimenez@sysvalve.es&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: rt2860: include KERN_* in printk</title>
<updated>2010-12-16T20:17:28Z</updated>
<author>
<name>L. Alberto Giménez</name>
<email>agimenez@sysvalve.es</email>
</author>
<published>2010-12-14T01:01:54Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=3be305fd7c0d07cdbb175467b4fe706ea10eb732'/>
<id>urn:sha1:3be305fd7c0d07cdbb175467b4fe706ea10eb732</id>
<content type='text'>
Fix checkpatch complains.

Signed-off-by: L. Alberto Giménez &lt;agimenez@sysvalve.es&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>drivers/staging: Remove unnecessary semicolons</title>
<updated>2010-11-16T20:06:47Z</updated>
<author>
<name>Joe Perches</name>
<email>joe@perches.com</email>
</author>
<published>2010-11-15T03:04:48Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=859171ca92f2865453b4b2e17bf679c67044a833'/>
<id>urn:sha1:859171ca92f2865453b4b2e17bf679c67044a833</id>
<content type='text'>
Signed-off-by: Joe Perches &lt;joe@perches.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: Merge 2.6.37-rc2 into staging-next</title>
<updated>2010-11-16T18:44:50Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2010-11-16T18:44:50Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=491acf0032c08a74a4c88032ca1c03b498bfec37'/>
<id>urn:sha1:491acf0032c08a74a4c88032ca1c03b498bfec37</id>
<content type='text'>
This was necessary in order  to resolve some conflicts that happened
between -rc1 and -rc2 with the following files:
	drivers/staging/bcm/Bcmchar.c
	drivers/staging/intel_sst/intel_sst_app_interface.c

All should be resolved now.

Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging, rt2860: Remove unnecessary casts of void ptr returning alloc function return values</title>
<updated>2010-11-10T00:44:47Z</updated>
<author>
<name>Jesper Juhl</name>
<email>jj@chaosbits.net</email>
</author>
<published>2010-11-08T23:10:25Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=131a14b3f0330a844f79c6b87c0fe57ec86faf62'/>
<id>urn:sha1:131a14b3f0330a844f79c6b87c0fe57ec86faf62</id>
<content type='text'>
Hi,

The [vk][cmz]alloc(_node) family of functions return void pointers which
it's completely unnecessary/pointless to cast to other pointer types since
that happens implicitly.

This patch removes such casts from drivers/staging/rt2860/

Signed-off-by: Jesper Juhl &lt;jj@chaosbits.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
</feed>
