From patchwork Thu Sep 22 05:30:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Hui X-Patchwork-Id: 4238 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 0215A23EFB for ; Thu, 22 Sep 2011 05:24:57 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id DBC8EA1816D for ; Thu, 22 Sep 2011 05:24:56 +0000 (UTC) Received: by fxe23 with SMTP id 23so3389965fxe.11 for ; Wed, 21 Sep 2011 22:24:56 -0700 (PDT) Received: by 10.223.61.66 with SMTP id s2mr2387480fah.27.1316669096589; Wed, 21 Sep 2011 22:24:56 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.18.198 with SMTP id y6cs155168lad; Wed, 21 Sep 2011 22:24:56 -0700 (PDT) Received: by 10.224.200.138 with SMTP id ew10mr415813qab.180.1316669095227; Wed, 21 Sep 2011 22:24:55 -0700 (PDT) Received: from TX2EHSOBE004.bigfish.com (tx2ehsobe002.messaging.microsoft.com. [65.55.88.12]) by mx.google.com with ESMTPS id ee9si5587414qab.115.2011.09.21.22.24.54 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 21 Sep 2011 22:24:55 -0700 (PDT) Received-SPF: neutral (google.com: 65.55.88.12 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) client-ip=65.55.88.12; Authentication-Results: mx.google.com; spf=neutral (google.com: 65.55.88.12 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) smtp.mail=jason.hui@linaro.org Received: from mail9-tx2-R.bigfish.com (10.9.14.241) by TX2EHSOBE004.bigfish.com (10.9.40.24) with Microsoft SMTP Server id 14.1.225.22; Thu, 22 Sep 2011 05:24:54 +0000 Received: from mail9-tx2 (localhost.localdomain [127.0.0.1]) by mail9-tx2-R.bigfish.com (Postfix) with ESMTP id F002410B017E; Thu, 22 Sep 2011 05:24:53 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(zzzz1202hzz8275dhz2dh87h2a8h668h839h) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPVD:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-FB-DOMAIN-IP-MATCH: fail Received: from mail9-tx2 (localhost.localdomain [127.0.0.1]) by mail9-tx2 (MessageSwitch) id 1316669093714476_29487; Thu, 22 Sep 2011 05:24:53 +0000 (UTC) Received: from TX2EHSMHS017.bigfish.com (unknown [10.9.14.238]) by mail9-tx2.bigfish.com (Postfix) with ESMTP id A956B81004C; Thu, 22 Sep 2011 05:24:53 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS017.bigfish.com (10.9.99.117) with Microsoft SMTP Server (TLS) id 14.1.225.22; Thu, 22 Sep 2011 05:24:53 +0000 Received: from az33smr01.freescale.net (10.64.34.199) by 039-SN1MMR1-003.039d.mgd.msft.net (10.84.1.16) with Microsoft SMTP Server id 14.1.323.7; Thu, 22 Sep 2011 00:24:53 -0500 Received: from r64343-desktop.ap.freescale.net (r64343-desktop.ap.freescale.net [10.192.242.36]) by az33smr01.freescale.net (8.13.1/8.13.0) with ESMTP id p8M5Ooxj008662; Thu, 22 Sep 2011 00:24:51 -0500 (CDT) From: Jason Liu To: CC: Subject: [U-Boot][PATCH] cosmetic: fsl_pmic: cosmetic for the help message Date: Thu, 22 Sep 2011 13:30:53 +0800 Message-ID: <1316669453-21001-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-OriginatorOrg: sigmatel.com This is cosmetic patch for the help message: Before: pmic dump [numregs] dump registers After: pmic dump [numregs] - dump registers Signed-off-by: Jason Liu --- drivers/misc/fsl_pmic.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/misc/fsl_pmic.c b/drivers/misc/fsl_pmic.c index ef80ad9..23255a5 100644 --- a/drivers/misc/fsl_pmic.c +++ b/drivers/misc/fsl_pmic.c @@ -230,6 +230,6 @@ int do_pmic(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( pmic, CONFIG_SYS_MAXARGS, 1, do_pmic, "Freescale PMIC (Atlas)", - "dump [numregs] dump registers\n" + "dump [numregs] - dump registers\n" "pmic write - write register" );