From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751456AbcACH3d (ORCPT ); Sun, 3 Jan 2016 02:29:33 -0500 Received: from smtprelay0143.hostedemail.com ([216.40.44.143]:51767 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750855AbcACH33 (ORCPT ); Sun, 3 Jan 2016 02:29:29 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::,RULES_HIT:41:355:379:541:599:966:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1539:1593:1594:1711:1730:1747:1777:1792:2196:2199:2393:2559:2562:2828:2917:3138:3139:3140:3141:3142:3352:3622:3865:3867:3868:3870:3871:3873:4321:4385:5007:6119:6248:6261:10004:10400:10848:11232:11658:11783:11914:12517:12519:12740:13069:13160:13229:13311:13357:13894:14659:21080:21326:30012:30054:30091,0,RBL:error,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:error,Custom_rules:0:0:0,LFtime:2000,LUA_SUMMARY:none X-HE-Tag: bed05_1802fe5c79f3b X-Filterd-Recvd-Size: 1909 Message-ID: <1451806163.4334.36.camel@perches.com> Subject: Re: [PATCH 1/3] NFC-mei_phy: Refactoring for mei_nfc_connect() From: Joe Perches To: SF Markus Elfring , Julian Calaby Cc: linux-wireless , Aloisio Almeida Jr , Lauro Ramos Venancio , Samuel Ortiz , LKML , kernel-janitors@vger.kernel.org, Julia Lawall Date: Sat, 02 Jan 2016 23:29:23 -0800 In-Reply-To: <5688C712.3070900@users.sourceforge.net> References: <566ABCD9.1060404@users.sourceforge.net> <56883849.2080304@users.sourceforge.net> <5688390B.3080800@users.sourceforge.net> <5688C712.3070900@users.sourceforge.net> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.18.3-1ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 2016-01-03 at 08:00 +0100, SF Markus Elfring wrote: > > >         r = 0; > > > - > > > -err: > > > +free_reply: > > >         kfree(reply); > > > +free_cmd: > > >         kfree(cmd); > > > - > > > > Why are you deleting the two blank lines here? > > Can they be unnecessary at this source code place > according to the Linux coding style convention? As far as I know, there's no linux specific accepted convention for blank lines preceding labels. My personal preference is for a blank line before a new block, but not before the second and subsequent labels in an error handling block.