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 /arch/m68k | |
parent | d90f0c107bdb9766aeaf11181b97f5d7fde3efda (diff) |
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 'arch/m68k')
-rw-r--r-- | arch/m68k/lib/board.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/m68k/lib/board.c b/arch/m68k/lib/board.c index 1df50f1fe54..b9ccb640599 100644 --- a/arch/m68k/lib/board.c +++ b/arch/m68k/lib/board.c @@ -606,11 +606,9 @@ void board_init_r (gd_t *id, ulong dest_addr) #if defined(FEC_ENET) eth_init(bd); #endif -#if defined(CONFIG_NET_MULTI) puts ("Net: "); eth_initialize (bd); #endif -#endif #ifdef CONFIG_POST post_run (NULL, POST_RAM | post_bootmode_get(0)); |