Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754894AbcJLCEN (ORCPT ); Tue, 11 Oct 2016 22:04:13 -0400 Received: from smtprelay0070.hostedemail.com ([216.40.44.70]:47494 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752957AbcJLCEC (ORCPT ); Tue, 11 Oct 2016 22:04:02 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::,RULES_HIT:41:355:379:541:599:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1538:1567:1593:1594:1711:1714:1730:1747:1777:1792:2393:2559:2562:2828:2904:3138:3139:3140:3141:3142:3622:3866:4321:5007:6114:6642:7974:10004:10400:10848:11658:11914:12043:12296:12740:12760:13069:13255:13311:13357:13439:14659:14721:21080: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: fuel44_79eb8176b7707 X-Filterd-Recvd-Size: 1432 Message-ID: <1476237836.2116.8.camel@perches.com> Subject: Re: [PATCH 5/5] i2c: i2c-piix4: coding style fix - quoted string split across lines From: Joe Perches To: Carlos Palminha , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org Cc: jdelvare@suse.com, wsa@the-dreams.de Date: Tue, 11 Oct 2016 19:03:56 -0700 In-Reply-To: <20161011173455.7803-1-palminha@synopsys.com> References: <20161011172441.7422-1-palminha@synopsys.com> <20161011173455.7803-1-palminha@synopsys.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: 548 Lines: 14 On Tue, 2016-10-11 at 18:34 +0100, Carlos Palminha wrote: [] > diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c [] > @@ -260,7 +260,8 @@ static int piix4_setup(struct pci_dev *PIIX4_dev, > else if ((temp & 0x0E) == 0) > dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus\n"); > else > - dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration " > + dev_err(&PIIX4_dev->dev, > + "Illegal Interrupt configuration " > "(or code out of date)!\n"); typically, this format would be coalesced into a single line.