Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751702AbcDUFMt (ORCPT ); Thu, 21 Apr 2016 01:12:49 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:5422 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751172AbcDUFMs (ORCPT ); Thu, 21 Apr 2016 01:12:48 -0400 X-IronPort-AV: E=Sophos;i="5.24,512,1454972400"; d="scan'208";a="215206993" Date: Thu, 21 Apr 2016 07:12:45 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@localhost6.localdomain6 To: Eduardo Valentin cc: Rajendra Nayak , kbuild-all@01.org, Zhang Rui , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] thermal: qcom: tsens-8960: fix semicolon.cocci warnings In-Reply-To: <20160420230030.GB5807@localhost.localdomain> Message-ID: References: <20160420230030.GB5807@localhost.localdomain> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 933 Lines: 36 On Wed, 20 Apr 2016, Eduardo Valentin wrote: > On Wed, Apr 06, 2016 at 08:14:34AM +0200, Julia Lawall wrote: > > Remove unneeded semicolon. > > > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > > > Signed-off-by: Fengguang Wu > > Signed-off-by: Julia Lawall > > --- > > > > tsens-8960.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > --- a/drivers/thermal/qcom/tsens-8960.c > > +++ b/drivers/thermal/qcom/tsens-8960.c > > To which tree this patch applies to? Sorry, I should have preserved that information, but I don't have it any more. julia > > @@ -247,7 +247,7 @@ static inline int code_to_mdegC(u32 adc_ > > u32 slope; > > int offset; > > > > - slope = thermal_zone_get_slope(s->tzd);; > > + slope = thermal_zone_get_slope(s->tzd); > > offset = CAL_MDEGC - slope * s->offset; > > > > return adc_code * slope + offset; >