diff options
| author | Jason Liu <jason.hui@linaro.org> | 2011-09-21 19:30:53 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-30 22:01:00 +0200 | 
| commit | 50cf8073433748de245f4c2cc57e90a8f7f1a327 (patch) | |
| tree | ffddb0886a9d873f70681bfb02bb80b6a47c887b /drivers/misc | |
| parent | b7171d92c675d6d6d788dd543e62a1f4f8a342c6 (diff) | |
| download | olio-uboot-2014.01-50cf8073433748de245f4c2cc57e90a8f7f1a327.tar.xz olio-uboot-2014.01-50cf8073433748de245f4c2cc57e90a8f7f1a327.zip | |
cosmetic: fsl_pmic: cosmetic for the help message
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>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'drivers/misc')
| -rw-r--r-- | 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 ef80ad949..23255a59b 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"  ); |