<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/nvec, branch v4.6</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.6</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v4.6'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2016-03-12T06:09:09Z</updated>
<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>
<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: replace led_classdev_register</title>
<updated>2016-02-08T04:00:04Z</updated>
<author>
<name>Hari Prasath Gujulan Elango</name>
<email>hgujulan@visteon.com</email>
</author>
<published>2016-01-21T10:23:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f52e240816cb268a11fee011aa9b7dc4185d9ded'/>
<id>urn:sha1:f52e240816cb268a11fee011aa9b7dc4185d9ded</id>
<content type='text'>
Replace the led_classdev_register() with the platform managed version
devm_led_classdev_register() &amp; henceforth remove the redundant
nvec_paz00_remove() function.

Signed-off-by: Hari Prasath Gujulan Elango &lt;hgujulan@visteon.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 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>
</feed>
