Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758510AbbBGSCj (ORCPT ); Sat, 7 Feb 2015 13:02:39 -0500 Received: from mail-ig0-f170.google.com ([209.85.213.170]:62997 "EHLO mail-ig0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756622AbbBGSCh (ORCPT ); Sat, 7 Feb 2015 13:02:37 -0500 MIME-Version: 1.0 In-Reply-To: <54D650BF.5000400@cogentembedded.com> References: <1423328797-17865-1-git-send-email-baspeters93@gmail.com> <1423328797-17865-3-git-send-email-baspeters93@gmail.com> <54D650BF.5000400@cogentembedded.com> Date: Sat, 7 Feb 2015 19:02:36 +0100 Message-ID: Subject: Re: [PATCH 2/6] drivers: isdn: act2000: capi.c: fix checkpatch errors From: Bas Peters To: Sergei Shtylyov Cc: "isdn@linux-pingi.de" , julia.lawall@lip6.fr, David Miller , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1628 Lines: 49 Thanks, will take that into account in future patches. With kind regards, Bas 2015-02-07 18:51 GMT+01:00 Sergei Shtylyov : > Hello. > > On 02/07/2015 08:06 PM, Bas Peters wrote: > >> This patch fixes the following checkpatch errors: >> 1. trailing statement >> 1. assignment of variable in if condition >> 1. incorrectly placed brace after function definition > > >> Signed-off-by: Bas Peters >> --- >> drivers/isdn/act2000/capi.c | 9 ++++++--- >> 1 file changed, 6 insertions(+), 3 deletions(-) > > >> diff --git a/drivers/isdn/act2000/capi.c b/drivers/isdn/act2000/capi.c >> index 3f66ca2..5d677e6 100644 >> --- a/drivers/isdn/act2000/capi.c >> +++ b/drivers/isdn/act2000/capi.c >> @@ -113,7 +113,8 @@ actcapi_chkhdr(act2000_card *card, actcapi_msghdr >> *hdr) >> m->hdr.cmd.cmd = c; \ >> m->hdr.cmd.subcmd = s; \ >> m->hdr.msgnum = actcapi_nextsmsg(card); \ >> - } else m = NULL; \ >> + } else >> + m = NULL; \ > > > Documentation/CodingStyle has an extra rule for such case: *else* branch > should also have {} since *if* branch has {}. > > [...] > > WNR, Sergei > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/