<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/nvec, 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: removes a useless cast on a void pointer</title>
<updated>2016-03-28T14:30:36Z</updated>
<author>
<name>Ben Marsh</name>
<email>bmarsh94@gmail.com</email>
</author>
<published>2016-03-15T18:37:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=a3dac5a35cc54fa983e3de56ec010734c87315c4'/>
<id>urn:sha1:a3dac5a35cc54fa983e3de56ec010734c87315c4</id>
<content type='text'>
Remove an unnecessary cast on a void pointer in nvec_power.c

Signed-off-by: Ben Marsh &lt;bmarsh94@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<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: removes an unnecessary cast on a void pointer</title>
<updated>2016-03-12T06:09:09Z</updated>
<author>
<name>Ben Marsh</name>
<email>bmarsh94@gmail.com</email>
</author>
<published>2016-03-10T20:24:59Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=0df8f51eed506737a8ff3431e32a79135432cc3d'/>
<id>urn:sha1:0df8f51eed506737a8ff3431e32a79135432cc3d</id>
<content type='text'>
Patch to nvec_ps2.c to remove an unnecessary cast on a void pointer.

Signed-off-by: Ben Marsh &lt;bmarsh94@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: Remove blank lines before a close brace</title>
<updated>2016-03-12T06:09:09Z</updated>
<author>
<name>Laura Garcia Liebana</name>
<email>nevola@gmail.com</email>
</author>
<published>2016-02-22T17:51:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=aaa657312a6b483af870bd7b412a1467b7808725'/>
<id>urn:sha1:aaa657312a6b483af870bd7b412a1467b7808725</id>
<content type='text'>
Blank lines aren't necessary before a close brace '}'. 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: 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>
</feed>
