fix cmd_bdinfo.c:354: warning: 'print_eth' defined but not used

This fixes the following warnings when running MAKEALL for coldfire :
cmd_bdinfo.c:354: warning: 'print_eth' defined but not used

Signed-off-by: Philippe De Muyter <phdm at macqel.be>
This commit is contained in:
Philippe De Muyter 2009-09-21 22:20:29 -06:00 committed by TsiChung Liew
parent dfc2b7697d
commit 116095eb1f

View File

@ -31,7 +31,7 @@ DECLARE_GLOBAL_DATA_PTR;
static void print_num(const char *, ulong); static void print_num(const char *, ulong);
#if !defined(CONFIG_ARM) || defined(CONFIG_CMD_NET) #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET)
static void print_eth(int idx); static void print_eth(int idx);
#endif #endif
@ -350,7 +350,7 @@ static void print_num(const char *name, ulong value)
printf ("%-12s= 0x%08lX\n", name, value); printf ("%-12s= 0x%08lX\n", name, value);
} }
#if !defined(CONFIG_ARM) || defined(CONFIG_CMD_NET) #if !(defined(CONFIG_ARM) || defined(CONFIG_M68K)) || defined(CONFIG_CMD_NET)
static void print_eth(int idx) static void print_eth(int idx)
{ {
char name[10], *val; char name[10], *val;