Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1733106

Re: [PATCH 2/2] Staging: irda: Remove parentheses on the right of assignment

From Joe Perches <joe@perches.com>
Newsgroups linux.kernel
Subject Re: [PATCH 2/2] Staging: irda: Remove parentheses on the right of assignment
Date 2017-09-15 23:40 +0200
Message-ID <uq6v8-cm-11@gated-at.bofh.it> (permalink)
References <uq625-8sF-5@gated-at.bofh.it> <uq625-8sF-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Sat, 2017-09-16 at 02:36 +0530, Srishti Sharma wrote:
> Parentheses are not needed on the right hand side of assignment
> statement in most cases. Done using the following semantic
> patch by coccinelle.
[]
> @@
> identifier E,F,G,f;
> expression e,r;
> @@
> 
> (
> E = (G == F);
> > 
> 
> E = (e == r);
> > 
> 
> E =
> -(
> ...
> -)
> ;
> )
[]
> diff --git a/drivers/staging/irda/drivers/mcs7780.c b/drivers/staging/irda/drivers/mcs7780.c
[]
> @@ -605,7 +605,7 @@ static int mcs_speed_change(struct mcs_cb *mcs)
>  	if (mcs->new_speed <= 115200) {
>  		rval &= ~MCS_FIR;
>  
> -		rst = (mcs->speed > 115200);
> +		rst = mcs->speed > 115200;
>  		if (rst)
>  			mcs_set_reg(mcs, MCS_MINRXPW_REG, 0);

Coccinelle is a good tool, but its output is limited to
the correctness
and completeness of its input script.

Please look at the suggested modifications of the script
and examine the code for other similar uses.

The else if block immediately below this is:

	} else if (mcs->new_speed <= 1152000) {
		rval &= ~MCS_FIR;

		if ((rst = !(mcs->speed == 576000 || mcs->speed == 11520
00)))
			mcs_set_reg(mcs, MCS_MINRXPW_REG, 5);

which should also be corrected by this patch.

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 2/2] Staging: irda: Remove parentheses on the right of assignment Srishti Sharma <srishtishar@gmail.com> - 2017-09-15 23:10 +0200
  Re: [PATCH 2/2] Staging: irda: Remove parentheses on the right of  assignment Joe Perches <joe@perches.com> - 2017-09-15 23:40 +0200
    Re: [Outreachy kernel] Re: [PATCH 2/2] Staging: irda: Remove  parentheses on the right of assignment Julia Lawall <julia.lawall@lip6.fr> - 2017-09-16 00:00 +0200

csiph-web