diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2009-01-27 18:03:10 -0600 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-01-28 08:43:45 +0100 | 
| commit | 62c3ae7c6ef215b1afa614abdf61acf077752207 (patch) | |
| tree | dac70a1eebda8bb6c05b95db3a7bebffeff94b3b /common/cmd_load.c | |
| parent | 84cde2bb409c07c6ef36a192d194359d4e9ccd70 (diff) | |
| download | olio-uboot-2014.01-62c3ae7c6ef215b1afa614abdf61acf077752207.tar.xz olio-uboot-2014.01-62c3ae7c6ef215b1afa614abdf61acf077752207.zip | |
Standardize command usage messages with cmd_usage()
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common/cmd_load.c')
| -rw-r--r-- | common/cmd_load.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_load.c b/common/cmd_load.c index 65a4d692a..350d7a352 100644 --- a/common/cmd_load.c +++ b/common/cmd_load.c @@ -1119,7 +1119,7 @@ int do_hwflow (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  			if (strcmp(argv[1], "on") == 0)  				hwflow_onoff(1);  			else -				printf("Usage: %s\n", cmdtp->usage); +				cmd_usage(cmdtp);  	}  	printf("RTS/CTS hardware flow control: %s\n", hwflow_onoff(0) ? "on" : "off");  	return 0; |