* 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/wepep250/wepep250.c b/board/wepep250/wepep250.c
index ebf75d7..08b1bfd 100644
--- a/board/wepep250/wepep250.c
+++ b/board/wepep250/wepep250.c
@@ -26,7 +26,7 @@
 int board_init( void ){
   DECLARE_GLOBAL_DATA_PTR;
 
-  gd->bd->bi_arch_number = 288;	
+  gd->bd->bi_arch_number = 288;
   gd->bd->bi_boot_params = 0xa0000000;
 /*
  * Setup GPIO stuff to get serial working
@@ -59,11 +59,11 @@
   gd->bd->bi_dram[0].start = WEP_SDRAM_1;
   gd->bd->bi_dram[0].size  = WEP_SDRAM_1_SIZE;
 #endif
-#if ( CONFIG_NR_DRAM_BANKS > 1 )  
+#if ( CONFIG_NR_DRAM_BANKS > 1 )
   gd->bd->bi_dram[1].start = WEP_SDRAM_2;
   gd->bd->bi_dram[1].size  = WEP_SDRAM_2_SIZE;
 #endif
-#if ( CONFIG_NR_DRAM_BANKS > 2 )  
+#if ( CONFIG_NR_DRAM_BANKS > 2 )
   gd->bd->bi_dram[2].start = WEP_SDRAM_3;
   gd->bd->bi_dram[2].size  = WEP_SDRAM_3_SIZE;
 #endif
@@ -71,7 +71,6 @@
   gd->bd->bi_dram[3].start = WEP_SDRAM_4;
   gd->bd->bi_dram[3].size  = WEP_SDRAM_4_SIZE;
 #endif
-	
+
   return 0;
 }
-