* 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_mii.c b/common/cmd_mii.c
index bb97c0d..d74a06f 100644
--- a/common/cmd_mii.c
+++ b/common/cmd_mii.c
@@ -27,7 +27,6 @@
 
 #include <common.h>
 #include <command.h>
-#include <cmd_mii.h>
 #include <miiphy.h>
 
 #if (CONFIG_COMMANDS & CFG_CMD_MII)
@@ -128,4 +127,15 @@
 	return rcode;
 }
 
+/***************************************************/
+
+cmd_tbl_t U_BOOT_CMD(MII) = MK_CMD_ENTRY(
+	"mii",	5,	1,	do_mii,
+	"mii     - MII utility commands\n",
+	"info  <addr>              - display MII PHY info\n"
+	"mii read  <addr> <reg>        - read  MII PHY <addr> register <reg>\n"
+	"mii write <addr> <reg> <data> - write MII PHY <addr> register <reg>\n"
+);
+
+
 #endif /* CFG_CMD_MII */