* 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/common/cmd_fpga.c b/common/cmd_fpga.c
index 4e4c4ab..f8ae52a 100644
--- a/common/cmd_fpga.c
+++ b/common/cmd_fpga.c
@@ -27,11 +27,11 @@
  */
 #include <common.h>
 #include <command.h>
-#include <cmd_fpga.h>
-#include <fpga.h>
+#include <cmd_bsp.h>
 #if (CONFIG_COMMANDS & CFG_CMD_NET)
 #include <net.h>
 #endif
+#include <fpga.h>
 
 #if 0
 #define	FPGA_DEBUG
@@ -155,4 +155,13 @@
 	return op;
 }
 
+cmd_tbl_t U_BOOT_CMD(FPGA) = MK_CMD_ENTRY(
+	"fpga",    6,     1,     do_fpga,
+	"fpga   - loadable FPGA image support\n",
+	"fpga [operation type] [device number] [image address] [image size]\n"
+	"fpga operations:\n"
+	"\tinfo\tlist known device information.\n"
+	"\tload\tLoad device from memory buffer.\n"
+	"\tdump\tLoad device to memory buffer.\n"
+);
 #endif	/* CONFIG_FPGA && CONFIG_COMMANDS & CFG_CMD_FPGA */