From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Date: Sat, 30 Jan 2021 18:55:24 +0000 Subject: Re: [PATCH 03/29] ia64: Avoid comma separated statements Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable To: Jiri Kosina , linux-kernel@vger.kernel.org Cc: Tony Luck , Fenghua Yu , linux-ia64@vger.kernel.org On Mon, 2020-08-24 at 21:56 -0700, Joe Perches wrote: > Use semicolons and braces. ping? > Signed-off-by: Joe Perches > --- > =A0arch/ia64/kernel/smpboot.c | 7 +++++-- > =A01 file changed, 5 insertions(+), 2 deletions(-) >=20 > diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c > index c29c600d7967..3311b9d21319 100644 > --- a/arch/ia64/kernel/smpboot.c > +++ b/arch/ia64/kernel/smpboot.c > @@ -224,8 +224,11 @@ get_delta (long *rt, long *master) > =A0 go[SLAVE] =3D 0; > =A0 t1 =3D ia64_get_itc(); > =A0 >=20 > - if (t1 - t0 < best_t1 - best_t0) > - best_t0 =3D t0, best_t1 =3D t1, best_tm =3D tm; > + if (t1 - t0 < best_t1 - best_t0) { > + best_t0 =3D t0; > + best_t1 =3D t1; > + best_tm =3D tm; > + } > =A0 } > =A0 >=20 > =A0 *rt =3D best_t1 - best_t0;