From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932957Ab1KPCAs (ORCPT ); Tue, 15 Nov 2011 21:00:48 -0500 Received: from perches-mx.perches.com ([206.117.179.246]:55031 "EHLO labridge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932895Ab1KPCAr (ORCPT ); Tue, 15 Nov 2011 21:00:47 -0500 Message-ID: <1321408846.9189.5.camel@Joe-Laptop> Subject: Re: [PATCH 3/4] mmc: Logging neatening From: Joe Perches To: NamJae Jeon Cc: Nicolas Ferre , Manuel Lauss , Cliff Cai , Nicolas Pitre , Chris Ball , Sascha Sommer , Alex Dubov , Bruce Chang , Harald Welte , Tony Olech , Pierre Ossman , linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, uclinux-dist-devel@blackfin.uclinux.org, linux-omap@vger.kernel.org, linux-usb@vger.kernel.org Date: Tue, 15 Nov 2011 18:00:46 -0800 In-Reply-To: References: <1321408236.9189.3.camel@Joe-Laptop> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.1- Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2011-11-16 at 10:55 +0900, NamJae Jeon wrote: > 2011/11/16 Joe Perches : > > On Wed, 2011-11-16 at 10:48 +0900, NamJae Jeon wrote: > > > > [123K of untrimmed reply] > > > > If you wrote something, I didn't find it. > > > > > - dev_info(&pdev->dev, "DW MMC controller at irq %d, " > > - "%d bit host data width, " > > - "%u deep fifo\n", > > + dev_info(&pdev->dev, > > + "DW MMC controller at irq %d, %d bit host data width, %u deep fifo\n", > > irq, width, fifo_size); > > I think that tab is needed this "DW MMC controller at irq ...." ? Argument alignment isn't always the right thing. Very long formats should not necessarily be aligned at the open parenthesis. It helps to determine when the format string or the dmesg output line length is too long.