From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 13E0EC433ED for ; Mon, 5 Apr 2021 10:52:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CFF30613A5 for ; Mon, 5 Apr 2021 10:52:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232840AbhDEKxB (ORCPT ); Mon, 5 Apr 2021 06:53:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:54904 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232355AbhDEKxA (ORCPT ); Mon, 5 Apr 2021 06:53:00 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 8889861284; Mon, 5 Apr 2021 10:52:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1617619974; bh=E6mGmcFVUNZbpRQ/xRfQlUA6ryi9bhjbtTQUzzlkoYo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qw1KzdddFc8NORDeJtkDLMMDOlkYgcvPmNZ1sUKA2FtZhxq+ixJXbaFKhL8Po+0kP 2A8d9uV2ZlJEfptO4bmk32RCEKYpvNJGxggDsZTR5eIMsEj6Vpb+JU0RTJzOcr7G/a iXUYDzprA+2GEucH/x8jLmREBsdi6iUcdj1GvWnk= Date: Mon, 5 Apr 2021 12:52:51 +0200 From: Greg KH To: Luiz Sampaio Cc: zbr@ioremap.net, corbet@lwn.net, rikard.falkeborn@gmail.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/9] w1: ds2438: fixed a coding style issue in iad_read Message-ID: References: <20210403044821.390485-1-sampaio.ime@gmail.com> <20210405105009.420924-1-sampaio.ime@gmail.com> <20210405105009.420924-3-sampaio.ime@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210405105009.420924-3-sampaio.ime@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 05, 2021 at 07:50:02AM -0300, Luiz Sampaio wrote: > Since there is only one statement inside the if clause, no brackets > are required. > > Signed-off-by: Luiz Sampaio > --- > drivers/w1/slaves/w1_ds2438.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) As this does the same type of fix as the next 3 patches, to the same file, they should be all merged together into 1 patch. thanks, greg k-h