<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/sep, branch master</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=master</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2014-07-27T20:17:47Z</updated>
<entry>
<title>staging: sep: remove driver</title>
<updated>2014-07-27T20:17:47Z</updated>
<author>
<name>Kristina Martšenko</name>
<email>kristina.martsenko@gmail.com</email>
</author>
<published>2014-07-27T19:59:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c22487b828adf09a6ffa3cdf47836d7b4407f827'/>
<id>urn:sha1:c22487b828adf09a6ffa3cdf47836d7b4407f827</id>
<content type='text'>
Looks like no one's working on the driver anymore, so remove it for now.
If someone wants to work on moving it out of staging, this commit can be
reverted.

Signed-off-by: Kristina Martšenko &lt;kristina.martsenko@gmail.com&gt;
Cc: Alan Cox &lt;alan@linux.intel.com&gt;
Cc: Mark A. Allyn &lt;mark.a.allyn@intel.com&gt;
Cc: Jayant Mangalampalli &lt;jayant.mangalampalli@intel.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: Fix blank lines issue reported by checkpatch</title>
<updated>2014-07-21T19:19:23Z</updated>
<author>
<name>LABBE Corentin</name>
<email>clabbe.montjoie@gmail.com</email>
</author>
<published>2014-07-19T17:34:42Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=bc0c9da55b25bc79363535da9ec20b1a144fe1c8'/>
<id>urn:sha1:bc0c9da55b25bc79363535da9ec20b1a144fe1c8</id>
<content type='text'>
Signed-off-by: LABBE Corentin &lt;clabbe.montjoie@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: Fix misceanellous problems reported by checkpatch</title>
<updated>2014-07-21T19:19:23Z</updated>
<author>
<name>LABBE Corentin</name>
<email>clabbe.montjoie@gmail.com</email>
</author>
<published>2014-07-19T17:34:41Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f0949457ca0d69f7ce7b5a8313801b92169a84e0'/>
<id>urn:sha1:f0949457ca0d69f7ce7b5a8313801b92169a84e0</id>
<content type='text'>
Signed-off-by: LABBE Corentin &lt;clabbe.montjoie@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: No else is necessary after a break (reported by checkpatch)</title>
<updated>2014-07-21T19:19:23Z</updated>
<author>
<name>LABBE Corentin</name>
<email>clabbe.montjoie@gmail.com</email>
</author>
<published>2014-07-19T17:34:40Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ba5a40d66422fbf9689a98c08a205200a1b47ac3'/>
<id>urn:sha1:ba5a40d66422fbf9689a98c08a205200a1b47ac3</id>
<content type='text'>
Signed-off-by: LABBE Corentin &lt;clabbe.montjoie@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: Fix checkpatch.pl warnings</title>
<updated>2014-06-20T00:18:15Z</updated>
<author>
<name>Benedict Boerger</name>
<email>benedict.boerger@cs.tu-dortmund.de</email>
</author>
<published>2014-06-19T18:18:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=9088f4af77c67b9a861d734bfd2b3e5f99b90f72'/>
<id>urn:sha1:9088f4af77c67b9a861d734bfd2b3e5f99b90f72</id>
<content type='text'>
Fix checkpatch.pl warnings:
Missing blank line after Declarations

Signed-off-by: Benedict Boerger &lt;benedict.boerger@cs.tu-dortmund.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>drivers/staging: Remove useless return variables</title>
<updated>2014-05-26T17:32:15Z</updated>
<author>
<name>Peter Senna Tschudin</name>
<email>peter.senna@gmail.com</email>
</author>
<published>2014-05-26T14:08:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4764ca981b040048766e4f39a45a4b9c5cecff9c'/>
<id>urn:sha1:4764ca981b040048766e4f39a45a4b9c5cecff9c</id>
<content type='text'>
This patch remove variables that are initialized with a constant,
are never updated, and are only used as parameter of return.
Return the constant instead of using a variable.

Verified by compilation only.

The coccinelle script that find and fixes this issue is:
// &lt;smpl&gt;
@@
type T;
constant C;
identifier ret;
@@
- T ret = C;
... when != ret
    when strict
return
- ret
+ C
;
// &lt;/smpl&gt;

Signed-off-by: Peter Senna Tschudin &lt;peter.senna@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: Fix coding style</title>
<updated>2014-05-15T22:04:45Z</updated>
<author>
<name>Camille Bordignon</name>
<email>camille.bordignon@gmail.com</email>
</author>
<published>2014-04-06T16:21:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=2787b99fd62f01af33bea5a076b665e128c67177'/>
<id>urn:sha1:2787b99fd62f01af33bea5a076b665e128c67177</id>
<content type='text'>
Fix coding style warning "Missing a blank line after declarations"

Signed-off-by: Camille Bordignon &lt;camille.bordignon@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: sep: Add fallthrough comment</title>
<updated>2014-03-17T00:52:00Z</updated>
<author>
<name>Andreea-Cristina Bernat</name>
<email>bernat.ada@gmail.com</email>
</author>
<published>2014-03-12T19:19:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=98e2dda325e9978a98635ad264438dcaea7f0b9c'/>
<id>urn:sha1:98e2dda325e9978a98635ad264438dcaea7f0b9c</id>
<content type='text'>
This patch solves the warning "possible switch/case default not preceded by
break or fallthrough comment".

Signed-off-by: Andreea-Cristina Bernat &lt;bernat.ada@gmail.com&gt;
Acked-by: Paul E. McKenney &lt;paulmck@linux.vnet.ibm.com&gt;
Signed-off-by: Peter P Waskiewicz Jr &lt;peter.p.waskiewicz.jr@intel.com&gt;
</content>
</entry>
<entry>
<title>Staging: sep: Fix line length over 80 characters in sep_main.c</title>
<updated>2014-02-27T21:07:59Z</updated>
<author>
<name>Monam Agarwal</name>
<email>monamagarwal123@gmail.com</email>
</author>
<published>2014-02-26T05:27:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e26b0da125b475bbfbc4e6e6936cfd2795e5aa3b'/>
<id>urn:sha1:e26b0da125b475bbfbc4e6e6936cfd2795e5aa3b</id>
<content type='text'>
This patch fixes the following checkpatch.pl warning in sep_main.c
WARNING: line length over 80 characters

Signed-off-by: Monam Agarwal &lt;monamagarwal123@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: sep: Fix quoted string split across lines in sep_main.c</title>
<updated>2014-02-27T21:07:59Z</updated>
<author>
<name>Monam Agarwal</name>
<email>monamagarwal123@gmail.com</email>
</author>
<published>2014-02-26T05:25:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=22fc12669bc624f28c815b4eddff81331205f583'/>
<id>urn:sha1:22fc12669bc624f28c815b4eddff81331205f583</id>
<content type='text'>
This patch fixes the following checkpatch.pl warning in sep_main.c
WARNING: Quoted string split across lines

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