From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753568AbbG2SjT (ORCPT ); Wed, 29 Jul 2015 14:39:19 -0400 Received: from smtprelay0039.hostedemail.com ([216.40.44.39]:49737 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750839AbbG2SjR (ORCPT ); Wed, 29 Jul 2015 14:39:17 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::,RULES_HIT:41:355:379:541:800:960:966:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1714:1730:1747:1777:1792:2196:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3351:3867:3868:4321:4385:5007:6119:6261:10004:10400:10848:11026:11232:11658:11914:12043:12296:12438:12517:12519:12555:12679:13069:13311:13357:14394:21080,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 X-HE-Tag: sugar40_1688a8a34d757 X-Filterd-Recvd-Size: 2253 Message-ID: <1438195153.30877.3.camel@perches.com> Subject: [PATCH] scsi: pmcraid: trivial typo in printk From: Joe Perches To: Colin King , Anil Ravindranath Cc: "James E.J. Bottomley" , Jiri Kosina , linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Date: Wed, 29 Jul 2015 11:39:13 -0700 In-Reply-To: <1438193985-7208-1-git-send-email-colin.king@canonical.com> References: <1438193985-7208-1-git-send-email-colin.king@canonical.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.11-0ubuntu3 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 Trivial typo fixes: o \b should be \n o coalesce format to avoid excess spaces Signed-off-by: Joe Perches --- And another here: drivers/scsi/pmcraid.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index ed31d8c..b421de2 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c @@ -1558,8 +1558,7 @@ static void pmcraid_handle_config_change(struct pmcraid_instance *pinstance) cfg_entry = &ccn_hcam->cfg_entry; fw_version = be16_to_cpu(pinstance->inq_data->fw_version); - pmcraid_info("CCN(%x): %x timestamp: %llx type: %x lost: %x flags: %x \ - res: %x:%x:%x:%x\n", + pmcraid_info("CCN(%x): %x timestamp: %llx type: %x lost: %x flags: %x res: %x:%x:%x:%x\n", pinstance->ccn.hcam->ilid, pinstance->ccn.hcam->op_code, ((pinstance->ccn.hcam->timestamp1) | @@ -1583,7 +1582,7 @@ static void pmcraid_handle_config_change(struct pmcraid_instance *pinstance) if (pinstance->ccn.hcam->notification_lost) { cfgcmd = pmcraid_get_free_cmd(pinstance); if (cfgcmd) { - pmcraid_info("lost CCN, reading config table\b"); + pmcraid_info("lost CCN, reading config table\n"); pinstance->reinit_cfg_table = 1; pmcraid_querycfg(cfgcmd); } else {