diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2011-10-02 10:01:27 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-05 22:22:16 +0200 | 
| commit | e2a53458a7ab375233048e922c4adf494866a78f (patch) | |
| tree | 0d703e3070ba43394fae714629c09c998bf5b80d /include/net.h | |
| parent | d90f0c107bdb9766aeaf11181b97f5d7fde3efda (diff) | |
| download | olio-uboot-2014.01-e2a53458a7ab375233048e922c4adf494866a78f.tar.xz olio-uboot-2014.01-e2a53458a7ab375233048e922c4adf494866a78f.zip | |
net: drop !NET_MULTI code
This is long over due.  All but two net drivers have been converted, but
those have now been dropped.
The only thing left to do is actually delete all references to NET_MULTI
and code that is compiled when that is not defined.  So here we scrub the
core code.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/net.h')
| -rw-r--r-- | include/net.h | 40 | 
1 files changed, 0 insertions, 40 deletions
| diff --git a/include/net.h b/include/net.h index ce5482508..d5d37b650 100644 --- a/include/net.h +++ b/include/net.h @@ -14,44 +14,8 @@  #if defined(CONFIG_8xx)  #include <commproc.h> -# if !defined(CONFIG_NET_MULTI) -#  if defined(FEC_ENET) || defined(SCC_ENET) -#   define CONFIG_NET_MULTI -#  endif -# endif  #endif	/* CONFIG_8xx */ -#if defined(CONFIG_MPC5xxx) -# if !defined(CONFIG_NET_MULTI) -#  if defined(CONFIG_MPC5xxx_FEC) -#   define CONFIG_NET_MULTI -#  endif -# endif -#endif	/* CONFIG_MPC5xxx */ - -#if !defined(CONFIG_NET_MULTI) && defined(CONFIG_CPM2) -#include <config.h> -#if defined(CONFIG_ETHER_ON_FCC) -#if defined(CONFIG_ETHER_ON_SCC) -#error "Ethernet not correctly defined" -#endif /* CONFIG_ETHER_ON_SCC */ -#define CONFIG_NET_MULTI -#if (CONFIG_ETHER_INDEX == 1) -#define	CONFIG_ETHER_ON_FCC1 -# define CONFIG_SYS_CMXFCR_MASK1	CONFIG_SYS_CMXFCR_MASK -# define CONFIG_SYS_CMXFCR_VALUE1	CONFIG_SYS_CMXFCR_VALUE -#elif (CONFIG_ETHER_INDEX == 2) -#define	CONFIG_ETHER_ON_FCC2 -# define CONFIG_SYS_CMXFCR_MASK2	CONFIG_SYS_CMXFCR_MASK -# define CONFIG_SYS_CMXFCR_VALUE2	CONFIG_SYS_CMXFCR_VALUE -#elif (CONFIG_ETHER_INDEX == 3) -#define	CONFIG_ETHER_ON_FCC3 -# define CONFIG_SYS_CMXFCR_MASK3	CONFIG_SYS_CMXFCR_MASK -# define CONFIG_SYS_CMXFCR_VALUE3	CONFIG_SYS_CMXFCR_VALUE -#endif /* CONFIG_ETHER_INDEX */ -#endif /* CONFIG_ETHER_ON_FCC */ -#endif /* !CONFIG_NET_MULTI && CONFIG_8260 */ -  #include <asm/byteorder.h>	/* for nton* / ntoh* stuff */ @@ -118,9 +82,7 @@ struct eth_device {  extern int eth_initialize(bd_t *bis);	/* Initialize network subsystem */  extern int eth_register(struct eth_device* dev);/* Register network device */  extern void eth_try_another(int first_restart);	/* Change the device */ -#ifdef CONFIG_NET_MULTI  extern void eth_set_current(void);		/* set nterface to ethcur var */ -#endif  extern struct eth_device *eth_get_dev(void);	/* get the current device MAC */  extern struct eth_device *eth_get_dev_by_name(const char *devname);  extern struct eth_device *eth_get_dev_by_index(int index); /* get dev @ index */ @@ -383,9 +345,7 @@ extern int		NetState;		/* Network loop state		*/  #define NETLOOP_SUCCESS		3  #define NETLOOP_FAIL		4 -#ifdef CONFIG_NET_MULTI  extern int		NetRestartWrap;		/* Tried all network devices	*/ -#endif  typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP,  	       TFTPSRV } proto_t; |