diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2009-01-27 18:03:12 -0600 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-01-28 08:49:52 +0100 | 
| commit | 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8 (patch) | |
| tree | 2b78cc5cbc9678d46449d873ef1ac0e02a13f2bc /common/cmd_immap.c | |
| parent | 79621bc10ba8b8c45d348994aba5b9e4923cb77b (diff) | |
| download | olio-uboot-2014.01-2fb2604d5c20beb061b0a94282b7f6eb14d00cb8.tar.xz olio-uboot-2014.01-2fb2604d5c20beb061b0a94282b7f6eb14d00cb8.zip | |
Command usage cleanup
Remove command name from all command "usage" fields and update
common/command.c to display "name - usage" instead of
just "usage". Also remove newlines from command usage fields.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common/cmd_immap.c')
| -rw-r--r-- | common/cmd_immap.c | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/common/cmd_immap.c b/common/cmd_immap.c index 13ad94e20..c8367f0fb 100644 --- a/common/cmd_immap.c +++ b/common/cmd_immap.c @@ -614,105 +614,105 @@ do_mccinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  U_BOOT_CMD(  	siuinfo,	1,	1,	do_siuinfo, -	"siuinfo - print System Interface Unit (SIU) registers\n", +	"print System Interface Unit (SIU) registers",  	NULL  );  U_BOOT_CMD(  	memcinfo,	1,	1,	do_memcinfo, -	"memcinfo- print Memory Controller registers\n", +	"print Memory Controller registers",  	NULL  );  U_BOOT_CMD(  	sitinfo,	1,	1,	do_sitinfo, -	"sitinfo - print System Integration Timers (SIT) registers\n", +	"print System Integration Timers (SIT) registers",  	NULL  );  #ifdef CONFIG_8260  U_BOOT_CMD(  	icinfo,	1,	1,	do_icinfo, -	"icinfo  - print Interrupt Controller registers\n", +	"print Interrupt Controller registers",  	NULL  );  #endif  U_BOOT_CMD(  	carinfo,	1,	1,	do_carinfo, -	"carinfo - print Clocks and Reset registers\n", +	"print Clocks and Reset registers",  	NULL  );  U_BOOT_CMD(  	iopinfo,	1,	1,	do_iopinfo, -	"iopinfo - print I/O Port registers\n", +	"print I/O Port registers",  	NULL  );  U_BOOT_CMD(  	iopset,	5,	0,	do_iopset, -	"iopset  - set I/O Port registers\n", +	"set I/O Port registers",  	"PORT PIN CMD VALUE\nPORT: A-D, PIN: 0-31, CMD: [dat|dir|odr|sor], VALUE: 0|1"  );  U_BOOT_CMD(  	dmainfo,	1,	1,	do_dmainfo, -	"dmainfo - print SDMA/IDMA registers\n", +	"print SDMA/IDMA registers",  	NULL  );  U_BOOT_CMD(  	fccinfo,	1,	1,	do_fccinfo, -	"fccinfo - print FCC registers\n", +	"print FCC registers",  	NULL  );  U_BOOT_CMD(  	brginfo,	1,	1,	do_brginfo, -	"brginfo - print Baud Rate Generator (BRG) registers\n", +	"print Baud Rate Generator (BRG) registers",  	NULL  );  U_BOOT_CMD(  	i2cinfo,	1,	1,	do_i2cinfo, -	"i2cinfo - print I2C registers\n", +	"print I2C registers",  	NULL  );  U_BOOT_CMD(  	sccinfo,	1,	1,	do_sccinfo, -	"sccinfo - print SCC registers\n", +	"print SCC registers",  	NULL  );  U_BOOT_CMD(  	smcinfo,	1,	1,	do_smcinfo, -	"smcinfo - print SMC registers\n", +	"print SMC registers",  	NULL  );  U_BOOT_CMD(  	spiinfo,	1,	1,	do_spiinfo, -	"spiinfo - print Serial Peripheral Interface (SPI) registers\n", +	"print Serial Peripheral Interface (SPI) registers",  	NULL  );  U_BOOT_CMD(  	muxinfo,	1,	1,	do_muxinfo, -	"muxinfo - print CPM Multiplexing registers\n", +	"print CPM Multiplexing registers",  	NULL  );  U_BOOT_CMD(  	siinfo,	1,	1,	do_siinfo, -	"siinfo  - print Serial Interface (SI) registers\n", +	"print Serial Interface (SI) registers",  	NULL  );  U_BOOT_CMD(  	mccinfo,	1,	1,	do_mccinfo, -	"mccinfo - print MCC registers\n", +	"print MCC registers",  	NULL  ); |