* 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/board/csb226/flash.c b/board/csb226/flash.c
index 0ee78e6..9801773 100644
--- a/board/csb226/flash.c
+++ b/board/csb226/flash.c
@@ -7,7 +7,7 @@
  * Marius Groeger <mgroeger@sysgo.de>
  *
  * (C) Copyright 2002
- * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de> 
+ * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
  *
  * See file CREDITS for list of people who contributed to this
  * project.
@@ -89,7 +89,7 @@
 /**
  * flash_print_info: - print information about the flash situation
  *
- * @param info: 
+ * @param info:
  */
 
 void flash_print_info  (flash_info_t *info)
@@ -118,13 +118,13 @@
 				return;
 		}
 
-		printf("  Size: %ld MB in %d Sectors\n", 
+		printf("  Size: %ld MB in %d Sectors\n",
 			info->size >> 20, info->sector_count);
 
 		printf("  Sector Start Addresses:");
 		for (i = 0; i < info->sector_count; i++) {
 			if ((i % 5) == 0) printf ("\n   ");
-	        
+
 			printf (" %08lX%s", info->start[i],
 				info->protect[i] ? " (RO)" : "     ");
 		}
@@ -153,7 +153,7 @@
 
 	if ((info->flash_id & FLASH_VENDMASK) != (INTEL_MANUFACT & FLASH_VENDMASK))
 		return ERR_UNKNOWN_FLASH_VENDOR;
-	
+
 	prot = 0;
 	for (sect=s_first; sect<=s_last; ++sect) {
 		if (info->protect[sect]) prot++;
@@ -203,7 +203,7 @@
 			*addr = 0x00FF00FF; /* resest to read mode          */
 
 		}
-		
+
 		printf("ok.\n");
 	}
 
@@ -222,10 +222,10 @@
 
 /**
  * write_word: - copy memory to flash
- * 
+ *
  * @param info:
  * @param dest:
- * @param data: 
+ * @param data:
  * @return:
  */
 
@@ -301,8 +301,8 @@
 
 /**
  * write_buf: - Copy memory to flash.
- * 
- * @param info:	 
+ *
+ * @param info:
  * @param src:	source of copy transaction
  * @param addr:	where to copy to
  * @param cnt: 	number of bytes to copy
@@ -372,4 +372,3 @@
 
 	return write_word(info, wp, data);
 }
-