Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751562AbdIOVbz (ORCPT ); Fri, 15 Sep 2017 17:31:55 -0400 Received: from smtprelay0175.hostedemail.com ([216.40.44.175]:53951 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750873AbdIOVbw (ORCPT ); Fri, 15 Sep 2017 17:31:52 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::,RULES_HIT:41:355:379:541:599:960:973:982:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:2194:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3865:3866:3867:3868:3870:3871:4321:5007:6119:7903:10004:10400:10848:11026:11232:11473:11657:11658:11914:12043:12295:12296:12555:12740:12760:12895:13069:13161:13229:13311:13357:13439:14659:14721:21080:21611:21627:30012:30054:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:15,LUA_SUMMARY:none X-HE-Tag: sort48_100690bd5ff5e X-Filterd-Recvd-Size: 2225 Message-ID: <1505511108.27581.16.camel@perches.com> Subject: Re: [PATCH 2/2] Staging: irda: Remove parentheses on the right of assignment From: Joe Perches To: Srishti Sharma , samuel@sortiz.org Cc: gregkh@linuxfoundation.org, netdev@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, outreachy-kernel@googlegroups.com Date: Fri, 15 Sep 2017 14:31:48 -0700 In-Reply-To: <9380189edb2722544981c868699ade29ab5c297d.1505508423.git.srishtishar@gmail.com> References: <9380189edb2722544981c868699ade29ab5c297d.1505508423.git.srishtishar@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.6-1ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1179 Lines: 52 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.