<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/echo, branch v2.6.37</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v2.6.37</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v2.6.37'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2010-05-14T20:16:10Z</updated>
<entry>
<title>staging: trivial: fix typo "seperate"</title>
<updated>2010-05-14T20:16:10Z</updated>
<author>
<name>Anand Gadiyar</name>
<email>gadiyar@ti.com</email>
</author>
<published>2010-05-12T07:33:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=935e99fb0739aa64d0dd7e8a0bc82faec5d8f830'/>
<id>urn:sha1:935e99fb0739aa64d0dd7e8a0bc82faec5d8f830</id>
<content type='text'>
s/seperate/separate

Signed-off-by: Anand Gadiyar &lt;gadiyar@ti.com&gt;
Cc: Jiri Kosina &lt;trivial@kernel.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: echo: coding style cleanups</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-26T05:07:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=56791f0a85382936d3922ecd05b4eedbfb53d2a6'/>
<id>urn:sha1:56791f0a85382936d3922ecd05b4eedbfb53d2a6</id>
<content type='text'>
Some remaining coding style cleanups to the header files
and the echo.c file.

Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: echo: remove unneeded USE_SSE2 defines</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-26T05:07:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c8b3953c4c267133ed3276d7b052282dca1e2e91'/>
<id>urn:sha1:c8b3953c4c267133ed3276d7b052282dca1e2e91</id>
<content type='text'>
This define is never set in the kernel, so remove the code
using it.

Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: echo: remove unneeded USE_MMX defines</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-26T05:06:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=325e3b4c72ba1aaca7ceba4cac22173b1e7ae427'/>
<id>urn:sha1:325e3b4c72ba1aaca7ceba4cac22173b1e7ae427</id>
<content type='text'>
This define is never set in the kernel, so remove the code
using it.  This lets us drop the mmx.h file as well.

Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: echo: remove bit_operations.h</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-26T05:05:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=248ed329ac543fc795d20990495ed429043159ac'/>
<id>urn:sha1:248ed329ac543fc795d20990495ed429043159ac</id>
<content type='text'>
This file is no longer needed, thanks to the work done by David.

Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: echo: top bit patch</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>David Rowe</name>
<email>david@rowetel.com</email>
</author>
<published>2009-08-23T01:27:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=196e76e86a3a909125daff3d62f0a38761f79c66'/>
<id>urn:sha1:196e76e86a3a909125daff3d62f0a38761f79c66</id>
<content type='text'>
This patch removes the need for the bit_operations.h include file which
can now be deleted.  It also contains some minor corrections to comments
(typos and alignment of ASCII formulas).  I have also removed some #if
lines that were not necessary.

I have tested the patch using a unit test module that runs in kernel
mode and have verified that the patched code gives identical results to
the previous version using a 8000 sample input sequence.  Let me know if
you want this unit test, it runs automatically when the module is
insmod-ed and outputs a go/no go result:

# insmod oslec.ko
# dmesg
[17191803.480000] oslec_test installed
[17191803.480000] Testing OSLEC with 128 taps (16 ms tail)
[17191803.496000] Oslec Unit Test PASSED! pass: 8000  fail: 0

Signed-off-by: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: echo: remove TODO item</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-10T17:46:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=a3c0f0aa4f206297ea84f91ffb61c8687e23e1a4'/>
<id>urn:sha1:a3c0f0aa4f206297ea84f91ffb61c8687e23e1a4</id>
<content type='text'>
The proc interface is no longer in the echo code, so remove the TODO
item.

Cc: Steve Underwood &lt;steveu@coppice.org&gt;
Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: echo: fix up remaining checkpatch.pl issues</title>
<updated>2009-09-15T19:02:16Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2009-08-10T17:45:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=49bb9e6d75346980acdc43f5198032c2a0a22c2c'/>
<id>urn:sha1:49bb9e6d75346980acdc43f5198032c2a0a22c2c</id>
<content type='text'>
It's all just minor comment spacing issues.  This patch fixes
up the remaining ones and now the code is checkpatch.pl clean.

Cc: Steve Underwood &lt;steveu@coppice.org&gt;
Cc: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
</entry>
<entry>
<title>Staging: oslec bug fix</title>
<updated>2009-06-19T18:00:54Z</updated>
<author>
<name>David Rowe</name>
<email>david@rowetel.com</email>
</author>
<published>2009-05-20T01:48:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0f51010e87636ed93338f4d9a987a466ca0d6969'/>
<id>urn:sha1:0f51010e87636ed93338f4d9a987a466ca0d6969</id>
<content type='text'>
I have just had a bug fix submitted for Oslec which I have applied to
Oslec SVN. The bug can potentially stops the echo canceller adapting
after a few seconds, although it hasn't caused many problems in
practice.

Signed-off-by: David Rowe &lt;david@rowetel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
<entry>
<title>Staging: echo cleanup</title>
<updated>2009-04-03T21:54:27Z</updated>
<author>
<name>Alexander Beregalov</name>
<email>a.beregalov@gmail.com</email>
</author>
<published>2009-03-12T00:32:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=dc57a3ea80a85a74094b873a693c3e07b2cb5da4'/>
<id>urn:sha1:dc57a3ea80a85a74094b873a693c3e07b2cb5da4</id>
<content type='text'>
before:
			errors	lines of code	errors/KLOC
drivers/staging/echo/	213		1701	125.2

after:
			errors	lines of code	errors/KLOC
drivers/staging/echo/	8		1685	4.7

Compile tested.

Signed-off-by: Alexander Beregalov &lt;a.beregalov@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
</entry>
</feed>
