diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_mii.c | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/common/cmd_mii.c b/common/cmd_mii.c index 4a8482977..4539dc54c 100644 --- a/common/cmd_mii.c +++ b/common/cmd_mii.c @@ -27,10 +27,11 @@  #include <common.h>  #include <command.h> -#include <miiphy.h> -#include <miivals.h>  #if (CONFIG_COMMANDS & CFG_CMD_MII) +#include <miiphy.h> + +#define	CONFIG_TERSE_MII	/* XXX necessary here because "miivals.h" is missing */  #ifdef CONFIG_TERSE_MII  /* @@ -145,7 +146,10 @@ U_BOOT_CMD(  	"mii read  <addr> <reg>        - read  MII PHY <addr> register <reg>\n"  	"mii write <addr> <reg> <data> - write MII PHY <addr> register <reg>\n"  ); -#else /* CONFIG_TERSE_MII */ + +#else /* ! CONFIG_TERSE_MII ================================================= */ + +#include <miivals.h>  typedef struct _MII_reg_desc_t {  	ushort regno; |