All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] cosmetic: fsl_pmic: cosmetic for the help message
@ 2011-09-22  5:30 Jason Liu
  2011-09-22  9:18 ` Stefano Babic
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Liu @ 2011-09-22  5:30 UTC (permalink / raw)
  To: u-boot

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 <jason.hui@linaro.org>
---
 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 <reg> <value> - write register"
 );
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] cosmetic: fsl_pmic: cosmetic for the help message
  2011-09-22  5:30 [U-Boot] [PATCH] cosmetic: fsl_pmic: cosmetic for the help message Jason Liu
@ 2011-09-22  9:18 ` Stefano Babic
  2011-09-22  9:30   ` Jason Hui
  0 siblings, 1 reply; 3+ messages in thread
From: Stefano Babic @ 2011-09-22  9:18 UTC (permalink / raw)
  To: u-boot

On 09/22/2011 07:30 AM, Jason Liu wrote:
> 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 <jason.hui@linaro.org>
> ---
>  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 <reg> <value> - write register"
>  );

Acked-by: Stefano Babic <sbabic@denx.de>

Jason, I apply it directly to u-boot-imx, next branch.

Best regards,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] cosmetic: fsl_pmic: cosmetic for the help message
  2011-09-22  9:18 ` Stefano Babic
@ 2011-09-22  9:30   ` Jason Hui
  0 siblings, 0 replies; 3+ messages in thread
From: Jason Hui @ 2011-09-22  9:30 UTC (permalink / raw)
  To: u-boot

Hi, Stefano,

On Thu, Sep 22, 2011 at 5:18 PM, Stefano Babic <sbabic@denx.de> wrote:
> On 09/22/2011 07:30 AM, Jason Liu wrote:
>> 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 <jason.hui@linaro.org>
>> ---
>> ?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 <reg> <value> - write register"
>> ?);
>
> Acked-by: Stefano Babic <sbabic@denx.de>
>
> Jason, I apply it directly to u-boot-imx, next branch.

Thanks.

>
> Best regards,
> Stefano
>
> --
> =====================================================================
> DENX Software Engineering GmbH, ? ? MD: Wolfgang Denk & Detlev Zundel
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 ?Email: office at denx.de
> =====================================================================
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-22  9:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-22  5:30 [U-Boot] [PATCH] cosmetic: fsl_pmic: cosmetic for the help message Jason Liu
2011-09-22  9:18 ` Stefano Babic
2011-09-22  9:30   ` Jason Hui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.