<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/nvec/nvec.c, branch v4.7</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=v4.7</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v4.7'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2016-03-28T14:30:36Z</updated>
<entry>
<title>staging: nvec: Fix comparison to NULL</title>
<updated>2016-03-28T14:30:36Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-03-12T15:19:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f05f33fae3c720bd555ceb15b46beb4c642b663a'/>
<id>urn:sha1:f05f33fae3c720bd555ceb15b46beb4c642b663a</id>
<content type='text'>
Replace the use of comparison to NULL, use !&lt;expression&gt; instead. Checkpatch detected these issues.

Signed-off-by: Laura Garcia Liebana &lt;nevola@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Remove space after a cast</title>
<updated>2016-03-28T14:30:36Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-03-12T15:20:04Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=9fc27699bd16707ae95218ba553bde144f5afbed'/>
<id>urn:sha1:9fc27699bd16707ae95218ba553bde144f5afbed</id>
<content type='text'>
No space is required after a cast. Checkpatch detected this issue.

Signed-off-by: Laura Garcia Liebana &lt;nevola@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: nvec.c: Drop void pointer cast</title>
<updated>2016-03-12T06:09:09Z</updated>
<author>
<name>Janani Ravichandran</name>
<email>janani.rvchndrn@gmail.com</email>
</author>
<published>2016-02-25T20:17:38Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=60d0ed1c425c71b6a87b1bace9a3b0f5efda9251'/>
<id>urn:sha1:60d0ed1c425c71b6a87b1bace9a3b0f5efda9251</id>
<content type='text'>
Void pointers need not be cast to other pointer types.
Semantic patch used:

@r@
expression x;
void *e;
type T;
identifier f;
@@

(
  *((T *)e)
|
  ((T *)x) [...]
|
  ((T *)x)-&gt;f
|
- (T *)
  e
)

Signed-off-by: Janani Ravichandran &lt;janani.rvchndrn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Avoid the use of BUG_ON</title>
<updated>2016-03-12T06:09:09Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-02-24T17:11:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=350698f6efe844f9f40bf47da7bbab75eba34c61'/>
<id>urn:sha1:350698f6efe844f9f40bf47da7bbab75eba34c61</id>
<content type='text'>
Prevent a kernel panic by avoiding the use of the BUG_ON macro.
Checkpatch detected this issue.

The BUG_ON macro is not needed as such cases shouldn't happen and they
were introduced for debugging purposes.

Signed-off-by: Laura Garcia Liebana &lt;nevola@gmail.com&gt;
Acked-by: Marc Dietrich &lt;marvin24@gmx.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Fix alignment with the open parenthesis</title>
<updated>2016-02-20T23:28:48Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-02-20T11:38:20Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=a4fe05d5666c86fcc185fbefda624ce2ce243d78'/>
<id>urn:sha1:a4fe05d5666c86fcc185fbefda624ce2ce243d78</id>
<content type='text'>
Alignment should match open parenthesis. Checkpatch detected these
issues.

Signed-off-by: Laura Garcia Liebana &lt;nevola@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Use the BIT macro</title>
<updated>2016-02-20T23:28:48Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-02-20T10:32:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=d09c2a84e8dc59503939202f3d8c909c19b2ee95'/>
<id>urn:sha1:d09c2a84e8dc59503939202f3d8c909c19b2ee95</id>
<content type='text'>
Prefer using the BIT macro instead of (1 &lt;&lt; X). Checkpatch detected this
issue.

Signed-off-by: Laura Garcia Liebana &lt;nevola@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: nvec: Modify the nvec_write_sync method to return the error code</title>
<updated>2016-02-15T00:52:15Z</updated>
<author>
<name>Tomás Tormo</name>
<email>tomas.tormo@gmail.com</email>
</author>
<published>2016-02-14T19:30:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=73b37c91ac5f31c296220bb20dabb881c80b4222'/>
<id>urn:sha1:73b37c91ac5f31c296220bb20dabb881c80b4222</id>
<content type='text'>
Modify the nvec_write_sync function to return the error code
instead of the received message.

The received message is now returned as an output parameter.

Signed-off-by: Tomás Tormo &lt;tomas.tormo@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Remove unneeded comment</title>
<updated>2016-02-10T01:51:30Z</updated>
<author>
<name>Janani Ravichandran</name>
<email>janani.rvchndrn@gmail.com</email>
</author>
<published>2016-02-09T19:52:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=fa882033e04ddd1fbda2b6ab620eb6590e0f5b02'/>
<id>urn:sha1:fa882033e04ddd1fbda2b6ab620eb6590e0f5b02</id>
<content type='text'>
Remove this comment as it does not have a meaning here.

Signed-off-by: Janani Ravichandran &lt;janani.rvchndrn@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: fix block comments</title>
<updated>2016-02-08T04:00:04Z</updated>
<author>
<name>Simon Guinot</name>
<email>simon.guinot@sequanux.org</email>
</author>
<published>2015-12-09T07:14:06Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=66ad85d13f56b464ca91de269b067fcc9b5f3313'/>
<id>urn:sha1:66ad85d13f56b464ca91de269b067fcc9b5f3313</id>
<content type='text'>
This patch fixes a couple of checkpatch warnings about block comments.

Signed-off-by: Simon Guinot &lt;simon.guinot@sequanux.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: nvec: Add space around '&lt;&lt;'</title>
<updated>2015-11-16T04:02:47Z</updated>
<author>
<name>Burcin Akalin</name>
<email>brcnakalin@gmail.com</email>
</author>
<published>2015-10-29T23:49:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b4129f2f53311804ee394fa80539710ab09a8401'/>
<id>urn:sha1:b4129f2f53311804ee394fa80539710ab09a8401</id>
<content type='text'>
Add space around operator '&lt;&lt;'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that '&lt;&lt;' (ctx:VxV)

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