
On Wednesday 11 January 2012 07:47:31 Fabio Estevam wrote:
CONFIG_NET_MULTI is not used anymore, so remove it from board files.
NAK: idea: good. actual patch: buggy :(.
--- a/include/configs/P1010RDB.h +++ b/include/configs/P1010RDB.h
-#if defined(CONFIG_TSEC_ENET) -#ifndef CONFIG_NET_MULTI -#define CONFIG_NET_MULTI -#endif
#define CONFIG_MII /* MII PHY management */ #define CONFIG_MII_DEFAULT_TSEC 1 /* Allow unregistered phys */ #define CONFIG_TSEC1 1
you sure this is correct ? looks like you deleted 2 if statements but only 1 endif.
--- a/include/configs/p1_p2_rdb_pc.h +++ b/include/configs/p1_p2_rdb_pc.h
#define CONFIG_DOS_PARTITION #endif /* CONFIG_PCI */
-#if defined(CONFIG_TSEC_ENET)
-#ifndef CONFIG_NET_MULTI -#define CONFIG_NET_MULTI -#endif
#define CONFIG_MII /* MII PHY management */ #define CONFIG_TSEC1 #define CONFIG_TSEC1_NAME "eTSEC1"
same issue here -mike