* Code cleanup:
  - remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)

* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
diff --git a/lib_arm/armlinux.c b/lib_arm/armlinux.c
index 0305803..8e06bd6 100644
--- a/lib_arm/armlinux.c
+++ b/lib_arm/armlinux.c
@@ -23,7 +23,6 @@
 
 #include <common.h>
 #include <command.h>
-#include <cmd_boot.h>
 #include <image.h>
 #include <zlib.h>
 #include <asm/byteorder.h>
@@ -35,6 +34,9 @@
 #define tag_size(type)  ((sizeof(struct tag_header) + sizeof(struct type)) >> 2)
 #define tag_next(t)     ((struct tag *)((u32 *)(t) + (t)->hdr.size))
 
+/*cmd_boot.c*/
+extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
+
 #if defined (CONFIG_SETUP_MEMORY_TAGS) || \
     defined (CONFIG_CMDLINE_TAG) || \
     defined (CONFIG_INITRD_TAG) || \
@@ -101,7 +103,7 @@
 	if (addr_dataflash(addr)){
 		read_dataflash(addr, sizeof(image_header_t), (char *)&header);
 	} else
-#endif	
+#endif
 	memcpy (&header, (char *)addr, sizeof(image_header_t));
 
 	if (ntohl(hdr->ih_magic) != IH_MAGIC) {
@@ -143,7 +145,7 @@
 	    csum = crc32 (0, (char *)data, len);
 	    if (csum != ntohl(hdr->ih_dcrc)) {
 		printf ("Bad Data CRC\n");
-	        SHOW_BOOT_PROGRESS (-12);
+		SHOW_BOOT_PROGRESS (-12);
 		do_reset (cmdtp, flag, argc, argv);
 	    }
 	    printf ("OK\n");
@@ -185,7 +187,7 @@
 	/*
 	 * no initrd image
 	 */
-        SHOW_BOOT_PROGRESS (14);
+	SHOW_BOOT_PROGRESS (14);
 
 	data = 0;
     }