<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/otus, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/otus?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/otus?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2010-10-02T01:11:56Z</updated>
<entry>
<title>staging: remove the Atheros otus vendor driver</title>
<updated>2010-10-02T01:11:56Z</updated>
<author>
<name>Luis R. Rodriguez</name>
<email>lrodriguez@atheros.com</email>
</author>
<published>2010-10-01T23:16:34Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=cff55f50b882b197a52c4cf0108a43c615d1fdba'/>
<id>urn:sha1:cff55f50b882b197a52c4cf0108a43c615d1fdba</id>
<content type='text'>
Atheros originally had posted a vendor driver to support
the Atheros AR9170 devices, the driver was called otus [1].
The otus driver was staging quality but it, along with
other chipset documentation helped the community do a rewrite
for a proper driver. Johannes Berg did the ar9170 [2] work and
Christian Lamparter then followed up with some final touches
for inclusion upstream.

The original goal behind ar9170 was to match all functionality,
performance, stability and quality against Otus. In the end this
proved quite challenging even with GPLv2 firmware.

Christian then decided to work on a replacement driver with
new enhancements to the GPLv2 firmware. It took 1 year, 5 months,
9 days since this merge of ar9170usb upstream to release carl9170
with upstream inclusion intentions but its now there.

We remove the Otus driver now as the carl9170 driver actually
ends up not only replacing but superseding the staging Otus driver!

http://wireless.kernel.org/en/users/Drivers/otus
http://wireless.kernel.org/en/users/Drivers/ar9170
http://wireless.kernel.org/en/users/Drivers/carl9170

Signed-off-by: Luis R. Rodriguez &lt;lrodriguez@atheros.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: otus: use free_netdev(netdev) instead of kfree()</title>
<updated>2010-09-30T11:14:08Z</updated>
<author>
<name>Vasiliy Kulikov</name>
<email>segooon@gmail.com</email>
</author>
<published>2010-09-28T17:08:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=2166abebc55843409327ddf6cc424cafadd33a30'/>
<id>urn:sha1:2166abebc55843409327ddf6cc424cafadd33a30</id>
<content type='text'>
Freeing netdev without free_netdev() leads to net, tx leaks.
I might lead to dereferencing freed pointer.

The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

@@
struct net_device* dev;
@@

-kfree(dev)
+free_netdev(dev)

Signed-off-by: Vasiliy Kulikov &lt;segooon@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: otus: '&amp;pointer[0]' to 'pointer' fix</title>
<updated>2010-09-20T23:10:56Z</updated>
<author>
<name>Andy Shevchenko</name>
<email>andy.shevchenko@gmail.com</email>
</author>
<published>2010-09-17T08:24:47Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=cfd1015a7a6236f4fdc0f8f9f688e38e78ae6d10'/>
<id>urn:sha1:cfd1015a7a6236f4fdc0f8f9f688e38e78ae6d10</id>
<content type='text'>
Signed-off-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: otus: use '%pM' format to print MAC address</title>
<updated>2010-09-16T19:26:12Z</updated>
<author>
<name>Andy Shevchenko</name>
<email>andy.shevchenko@gmail.com</email>
</author>
<published>2010-09-11T14:17:09Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=28dc55bc9a6c1ab2a80ee2daa935be4598e0a6f6'/>
<id>urn:sha1:28dc55bc9a6c1ab2a80ee2daa935be4598e0a6f6</id>
<content type='text'>
Signed-off-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: otus: removes global variable initialization to 0 in wwrap.c</title>
<updated>2010-09-08T02:39:15Z</updated>
<author>
<name>Prashant P. Shah</name>
<email>pshah.mumbai@gmail.com</email>
</author>
<published>2010-09-07T13:14:50Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=675d6409ae5ac0816af5e672b7030e350408d563'/>
<id>urn:sha1:675d6409ae5ac0816af5e672b7030e350408d563</id>
<content type='text'>
This is a patch to the wwrap.c file that removes the initialization
of global variable 'smp_kevent_Lock' to 0

Signed-off-by: Prashant P. Shah &lt;pshah.mumbai@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: Bulk convert the semaphore mess</title>
<updated>2010-09-08T02:31:32Z</updated>
<author>
<name>Thomas Gleixner</name>
<email>tglx@linutronix.de</email>
</author>
<published>2010-09-07T14:33:47Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=0f0800f17a60816141f138a422477dc936262c42'/>
<id>urn:sha1:0f0800f17a60816141f138a422477dc936262c42</id>
<content type='text'>
init_MUTEX(_LOCKED) and DECLARE_MUTEX are going away. Bulk convert
staging users.

Signed-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: otus: fix compile warning and some style issues</title>
<updated>2010-08-31T18:52:30Z</updated>
<author>
<name>Roberto Rodriguez Alkala</name>
<email>rralcala@gmail.com</email>
</author>
<published>2010-08-07T23:52:29Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=bed49c69453641a2fd80d90f5a3b5204107eb459'/>
<id>urn:sha1:bed49c69453641a2fd80d90f5a3b5204107eb459</id>
<content type='text'>
In today linux-next I got a compile warning in staging/otus driver.
This patch solves the issue and also improves the coding style.

Signed-off-by: Roberto Rodriguez Alcala &lt;rralcala@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: comedi : fix brace coding style issue in wwrap.c</title>
<updated>2010-08-03T01:27:42Z</updated>
<author>
<name>Daniele Boncompagni</name>
<email>daniele.boncompagni@gmail.com</email>
</author>
<published>2010-08-01T16:41:21Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=d9811b79d4e13fc82a55ce3ae19dda531cd759f5'/>
<id>urn:sha1:d9811b79d4e13fc82a55ce3ae19dda531cd759f5</id>
<content type='text'>
This is a patch to the wwrap.c file that fixes up a brace warnings and
other errors found by the checkpatch.pl tool.

Signed-off-by: Daniele Boncompagni &lt;daniele.boncompagni@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>staging: otus: check kmalloc() return value</title>
<updated>2010-08-03T01:23:44Z</updated>
<author>
<name>Kulikov Vasiliy</name>
<email>segooon@gmail.com</email>
</author>
<published>2010-07-30T11:08:00Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=d49d0e39a09209d0136c7da2a1a52e99af2d4656'/>
<id>urn:sha1:d49d0e39a09209d0136c7da2a1a52e99af2d4656</id>
<content type='text'>
kmalloc() may fail, if so return error from zfwUsbSubmitControl().

Signed-off-by: Kulikov Vasiliy &lt;segooon@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: fix typos concerning "address"</title>
<updated>2010-07-22T21:43:10Z</updated>
<author>
<name>Uwe Kleine-König</name>
<email>u.kleine-koenig@pengutronix.de</email>
</author>
<published>2010-07-12T15:15:46Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=f69b0d6451679f1466381a46ac7ab671a7b5668c'/>
<id>urn:sha1:f69b0d6451679f1466381a46ac7ab671a7b5668c</id>
<content type='text'>
Signed-off-by: Uwe Kleine-König &lt;u.kleine-koenig@pengutronix.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
</feed>
