<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">2015-10-19 11:09 GMT+03:00 Daniel Baluta <span dir="ltr"><<a href="mailto:daniel.baluta@gmail.com" target="_blank">daniel.baluta@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="">On Mon, Oct 19, 2015 at 2:29 AM, Cristina Moraru<br>
<<a href="mailto:cristina.moraru09@gmail.com">cristina.moraru09@gmail.com</a>> wrote:<br>
> Remove comparisons to 0 or NULL in order to provide efficiency.<br>
> Done with coccinelle<br>
> @replace@<br>
> identifier e;<br>
> @@<br>
> (<br>
> -e == 0<br>
> + !e<br>
> |<br>
> -e != 0<br>
> + e<br>
> |<br>
> -e == NULL<br>
> + !e<br>
> |<br>
> -e != NULL<br>
> + e<br>
> )<br>
><br>
> Cristina Moraru (5):<br>
>   staging: iio: Remove unnecessary explicit comparisons<br>
>   staging: iio: Remove unnecessary explicit comparisons<br>
>   staging: iio: Remove unnecessary explicit comparisons<br>
>   staging: iio: Remove unnecessary explicit comparisons<br>
>   staging: iio: Remove unnecessary explicit comparisons<br>
<br>
</span>So you have one patch per directory, that's good! Please<br>
add also the directory name in the subject in order to have<br>
different subjects for patches otherwise Greg will be confused.<br>
<br>
e.g.<br>
<br>
  staging: iio: adc: Remove unnecessary explicit comparisons<br>
<br>
<br>
thanks,<br>
Daniel.<br></blockquote><div><br>First 4 pathches are 1 patch per directory. Since in the other 
directories had 1 or at most 2 errors each I combined them in a patch. 
Should I somehow update the last patch subject ? <br></div></div><br></div></div>