From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753189AbaIHKAe (ORCPT ); Mon, 8 Sep 2014 06:00:34 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:35857 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752989AbaIHKAd (ORCPT ); Mon, 8 Sep 2014 06:00:33 -0400 Date: Mon, 8 Sep 2014 15:30:19 +0530 From: Sudip Mukherjee To: Masahiro Yamada Cc: Josh Triplett , linux-mtd@lists.infradead.org, David Woodhouse , Brian Norris , Jiri Kosina , Huang Shijie , Rashika Kheria , "grmoore@altera.com" , linux-kernel@vger.kernel.org Subject: Re: [PATCH 7/7] mtd: denali: fix indentations and other trivial things Message-ID: <20140908100019.GA3840@sudip-PC> References: <1410163813-31783-8-git-send-email-yamada.m@jp.panasonic.com> <20140908083920.GD5361@thin> <20140908181447.C428.AA925319@jp.panasonic.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140908181447.C428.AA925319@jp.panasonic.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 08, 2014 at 06:14:48PM +0900, Masahiro Yamada wrote: > Hi Josh, > > > On Mon, 8 Sep 2014 01:39:20 -0700 > Josh Triplett wrote: > > > On Mon, Sep 08, 2014 at 05:10:13PM +0900, Masahiro Yamada wrote: > > > @@ -406,9 +404,9 @@ static void get_hynix_nand_para(struct denali_nand_info *denali, > > > break; > > > default: > > > dev_warn(denali->dev, > > > - "Spectra: Unknown Hynix NAND (Device ID: 0x%x)." > > > - "Will use default parameter values instead.\n", > > > - device_id); > > > + "Spectra: Unknown Hynix NAND (Device ID: 0x%x)." > > > + "Will use default parameter values instead.\n", > > > + device_id); > > > > Please join quoted strings into a single line. > > > > > - pr_err("Your NAND chip OOB is not large enough to \ > > > - contain 8bit ECC correction codes"); > > > + pr_err("Your NAND chip OOB is not large enough to " > > > + "contain 8bit ECC correction codes"); > > > > Likewise. > > > > Thanks for your review, but > the quoted strings are too long to be joined into a single line. > (exceed 80 columns) > These are user-visible strings and they can be more than 80 char. If you see CodingStyle document , it is mentioned that : However, never break user-visible strings such as printk messages, because that breaks the ability to grep for them. thanks sudip > > Best Regards > Masahiro Yamada > > -- > 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/