Re: [PATCH v3 2/2] staging: ks7010: Unnecessary parentheses are removed and also improved coding style.

From: Greg KH
Date: Fri Feb 24 2017 - 12:21:01 EST


On Wed, Feb 22, 2017 at 06:31:12PM +0530, Arushi Singhal wrote:
> Unnecessary parentheses are removed as reported by checkpatch.pl
> to make coder nicer and to improve readability.
> Also coding style is improved.For example:-
> It's often nicer to read if &(foo[0]) is converted to foo like:
> memcpy(&(ap->bssid[0]), &(ap_info->bssid[0]), ETH_ALEN);
> memcpy(ap->bssid, ap_info->bssid, ETH_ALEN);
>
> Signed-off-by: Arushi Singhal <arushisinghal19971997@xxxxxxxxx>
> ---
> Changes in v3:
> - Commit message made more accurate and as per the changes.
> - previously versions were not marked.

Where is patch 1/2? And why does this have the same subject as another
patch you sent that was listed as patch 1/1? Please fix up and send an
updated patch.

thanks,

greg k-h