<div dir="ltr">Hi,<div><br></div><div>Actually on the website it&#39;s return that </div><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px"><font face="arial, helvetica, sans-serif">Pick a warning, and try to fix it. For your first patch, only pick one warning. In the future you can group multiple changes into one patch, but only if you follow the <a href="http://kernelnewbies.org/PatchPhilosophy" style="border:0px;text-decoration:none;color:rgb(0,102,204);background-color:transparent">PatchPhilosophy</a> of breaking each patch into logical changes.</font></p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px"><br></p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px">That&#39;s hwy I just fix one warning. </p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px"><br></p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px">Please let me know if I can fix more than one warning in my first patch.</p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px"><br></p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px">Thanks,</p><p style="margin:0.6em 1ex;padding:0px;color:rgb(0,0,0);font-size:12px;line-height:15px">Shirish</p></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 8, 2015 at 12:32 PM,  <span dir="ltr">&lt;<a href="mailto:Valdis.Kletnieks@vt.edu" target="_blank">Valdis.Kletnieks@vt.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, 08 Jan 2015 12:00:07 -0800, shirish gajera said:<br>
<br>
&gt; WARNING: Single statement macros should not use a do {} while (0) loop<br>
&gt;<br>
&gt; I have added single statement in curly braces, because it was giving<br>
&gt; me &quot;WARNING: macros should not use a trailing semicolon&quot;.<br>
&gt;<br>
&gt; Signed-off-by: Shirish Gajera &lt;<a href="mailto:gajerashirish@gmail.com">gajerashirish@gmail.com</a>&gt;<br>
&gt; ---<br>
&gt;  drivers/staging/skein/skein_block.c | 8 ++++----<br>
&gt;  1 file changed, 4 insertions(+), 4 deletions(-)<br>
&gt;<br>
&gt; diff --git a/drivers/staging/skein/skein_block.c<br>
&gt; b/drivers/staging/skein/skein_block.c<br>
&gt; index 66261ab..5f46cd6 100644<br>
&gt; --- a/drivers/staging/skein/skein_block.c<br>
&gt; +++ b/drivers/staging/skein/skein_block.c<br>
&gt; @@ -82,10 +82,10 @@ do {<br>
&gt;                   \<br>
&gt;  } while (0)<br>
&gt;  #else<br>
&gt;  /* looping version */<br>
&gt; -#define R256(p0, p1, p2, p3, ROT, r_num) \<br>
<br>
</span>Why did you not fix the definition of R256 in the other half of<br>
the &quot;#if SKEIN_UNROLL_256 == 0&quot; code?  Or the definitions for R512<br>
and R1024?  You cleaned up one case, and left another 5 cases alone....<br>
<br>
(This is part of why blindly fixing checkpatch complaints without actually<br>
looking at the code and understanding isn&#39;t always a good thing)<br>
<br>
</blockquote></div><br></div>