Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030310AbcJQRHl (ORCPT ); Mon, 17 Oct 2016 13:07:41 -0400 Received: from smtprelay0172.hostedemail.com ([216.40.44.172]:45560 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S936101AbcJQRE0 (ORCPT ); Mon, 17 Oct 2016 13:04:26 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:599:800:960:966:973:988:989:1042:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:2196:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3352:3622:3865:3866:3867:3868:3870:3873:4321:4385:5007:6119:7514:7576:7903:7974:9010:9545:10004:10400:10848:11232:11658:11914:12555:12740:12760:13069:13071:13161:13229:13311:13357:13439:14180:14181:14659:14721:14777:21060:21080:21325:21433:21451:30022:30054:30070:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:2,LUA_SUMMARY:none X-HE-Tag: crate92_7d97873292726 X-Filterd-Recvd-Size: 1864 Message-ID: <1476723861.4414.1.camel@perches.com> Subject: Re: [PATCH] Add missing space at end of pr_fmt(). From: Joe Perches To: frowand.list@gmail.com, Rob Herring Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Date: Mon, 17 Oct 2016 10:04:21 -0700 In-Reply-To: <1476717010-3580-1-git-send-email-frowand.list@gmail.com> References: <1476717010-3580-1-git-send-email-frowand.list@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.0-2ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1051 Lines: 36 On Mon, 2016-10-17 at 08:10 -0700, frowand.list@gmail.com wrote: > From: Frank Rowand > > Make pr_fmt() in fdt.c consistent with all other files in drivers/of/ Hi Frank. Patches should use the subsystem as a subject prefix to make the subsystem more obvious when using "git log". This email subject could be something like: "Subject: [PATCH] of: fdt: Add missing space at end of pr_fmt()" Please check the git log to see examples for drivers/of/fdt.c and pick the prefix style you think appropriate. > Signed-off-by: Frank Rowand > --- > drivers/of/fdt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c > index c89d5d231a0e..9f98e437e1f1 100644 > --- a/drivers/of/fdt.c > +++ b/drivers/of/fdt.c > @@ -9,7 +9,7 @@ > * version 2 as published by the Free Software Foundation. > */ > > -#define pr_fmt(fmt) "OF: fdt:" fmt > +#define pr_fmt(fmt) "OF: fdt: " fmt > > #include > #include >