diff options
| author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-07-31 15:01:53 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-08-09 01:07:37 +0200 | 
| commit | 388a29d0243eaca258b4c21e9456b09a0fff76a6 (patch) | |
| tree | 4b6755e3c8a776c7ad6ca7f064887fe70d2d8674 /common/cmd_ubi.c | |
| parent | cc9f607beb49d4d3556c326efb83a0a51784e484 (diff) | |
| download | olio-uboot-2014.01-388a29d0243eaca258b4c21e9456b09a0fff76a6.tar.xz olio-uboot-2014.01-388a29d0243eaca258b4c21e9456b09a0fff76a6.zip | |
various cmd_* files: fixed layout a little bit
Most of the files have U_BOOT_CMD on a separate line,
but a few didn't and had the first line on the same line
as U_BOOT_CMD.
This changes these files by adding a line break and a tab
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'common/cmd_ubi.c')
| -rw-r--r-- | common/cmd_ubi.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c index 77ca0a5f2..7692ac771 100644 --- a/common/cmd_ubi.c +++ b/common/cmd_ubi.c @@ -598,7 +598,8 @@ static int do_ubi(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])  	return -1;  } -U_BOOT_CMD(ubi, 6, 1, do_ubi, +U_BOOT_CMD( +	ubi, 6, 1, do_ubi,  	"ubi commands",  	"part [part] [offset]\n"  		" - Show or set current partition (with optional VID" |