Commit 388a29d0243eaca258b4c21e9456b09a0fff76a6

Authored by Frans Meulenbroeks
Committed by Wolfgang Denk
1 parent cc9f607beb

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>

Showing 12 changed files with 26 additions and 13 deletions Side-by-side Diff

... ... @@ -272,7 +272,8 @@
272 272 return 0;
273 273 }
274 274  
275   -U_BOOT_CMD(ambapp, 1, 1, do_ambapp_print,
  275 +U_BOOT_CMD(
  276 + ambapp, 1, 1, do_ambapp_print,
276 277 "list AMBA Plug&Play information",
277 278 "ambapp\n"
278 279 " - lists AMBA (AHB & APB) Plug&Play devices present on the system"
common/cmd_bootldr.c
... ... @@ -167,7 +167,8 @@
167 167 return 0;
168 168 }
169 169  
170   -U_BOOT_CMD(bootldr, 2, 0, do_bootldr,
  170 +U_BOOT_CMD(
  171 + bootldr, 2, 0, do_bootldr,
171 172 "boot ldr image from memory",
172 173 "[addr]\n"
173 174 ""
common/cmd_cplbinfo.c
... ... @@ -53,7 +53,8 @@
53 53 return 0;
54 54 }
55 55  
56   -U_BOOT_CMD(cplbinfo, 1, 0, do_cplbinfo,
  56 +U_BOOT_CMD(
  57 + cplbinfo, 1, 0, do_cplbinfo,
57 58 "display current CPLB tables",
58 59 ""
59 60 );
common/cmd_license.c
... ... @@ -49,7 +49,8 @@
49 49 return 0;
50 50 }
51 51  
52   -U_BOOT_CMD(license, 1, 1, do_license,
  52 +U_BOOT_CMD(
  53 + license, 1, 1, do_license,
53 54 "print GPL license text",
54 55 ""
55 56 );
... ... @@ -130,7 +130,8 @@
130 130 return 0;
131 131 }
132 132  
133   -U_BOOT_CMD(mmcinfo, 2, 0, do_mmcinfo,
  133 +U_BOOT_CMD(
  134 + mmcinfo, 2, 0, do_mmcinfo,
134 135 "display MMC info",
135 136 "<dev num>\n
136 137 " - device number of the device to dislay info of\n"
... ... @@ -579,7 +579,8 @@
579 579 return cmd_usage(cmdtp);
580 580 }
581 581  
582   -U_BOOT_CMD(nand, CONFIG_SYS_MAXARGS, 1, do_nand,
  582 +U_BOOT_CMD(
  583 + nand, CONFIG_SYS_MAXARGS, 1, do_nand,
583 584 "NAND sub-system",
584 585 "info - show available NAND devices\n"
585 586 "nand device [dev] - show or set current device\n"
... ... @@ -223,7 +223,8 @@
223 223 return ret;
224 224 }
225 225  
226   -U_BOOT_CMD(otp, 7, 0, do_otp,
  226 +U_BOOT_CMD(
  227 + otp, 7, 0, do_otp,
227 228 "One-Time-Programmable sub-system",
228 229 "read <addr> <page> [count] [half]\n"
229 230 " - read 'count' half-pages starting at 'page' (offset 'half') to 'addr'\n"
common/cmd_spibootldr.c
... ... @@ -30,7 +30,8 @@
30 30 return bfrom_SpiBoot(addr, BFLAG_PERIPHERAL | 4, 0, NULL);
31 31 }
32 32  
33   -U_BOOT_CMD(spibootldr, 2, 0, do_spibootldr,
  33 +U_BOOT_CMD(
  34 + spibootldr, 2, 0, do_spibootldr,
34 35 "boot ldr image from spi",
35 36 "[offset]\n"
36 37 " - boot ldr image stored at offset into spi\n");
common/cmd_strings.c
... ... @@ -38,7 +38,8 @@
38 38 return 0;
39 39 }
40 40  
41   -U_BOOT_CMD(strings, 3, 1, do_strings,
  41 +U_BOOT_CMD(
  42 + strings, 3, 1, do_strings,
42 43 "display strings",
43 44 "<addr> [byte count]\n"
44 45 " - display strings at <addr> for at least [byte count] or first double NUL"
... ... @@ -598,7 +598,8 @@
598 598 return -1;
599 599 }
600 600  
601   -U_BOOT_CMD(ubi, 6, 1, do_ubi,
  601 +U_BOOT_CMD(
  602 + ubi, 6, 1, do_ubi,
602 603 "ubi commands",
603 604 "part [part] [offset]\n"
604 605 " - Show or set current partition (with optional VID"
... ... @@ -131,13 +131,15 @@
131 131 " - mount 'volume-name' volume"
132 132 );
133 133  
134   -U_BOOT_CMD(ubifsls, 2, 0, do_ubifs_ls,
  134 +U_BOOT_CMD(
  135 + ubifsls, 2, 0, do_ubifs_ls,
135 136 "list files in a directory",
136 137 "[directory]\n"
137 138 " - list files in a 'directory' (default '/')"
138 139 );
139 140  
140   -U_BOOT_CMD(ubifsload, 4, 0, do_ubifs_load,
  141 +U_BOOT_CMD(
  142 + ubifsload, 4, 0, do_ubifs_load,
141 143 "load file from an UBIFS filesystem",
142 144 "<addr> <filename> [bytes]\n"
143 145 " - load file 'filename' to address 'addr'"
... ... @@ -262,7 +262,8 @@
262 262 return 0;
263 263 }
264 264  
265   -U_BOOT_CMD(imxtract, 4, 1, do_imgextract,
  265 +U_BOOT_CMD(
  266 + imxtract, 4, 1, do_imgextract,
266 267 "extract a part of a multi-image",
267 268 "addr part [dest]\n"
268 269 " - extract <part> from legacy image at <addr> and copy to <dest>"