From e2a53458a7ab375233048e922c4adf494866a78f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 2 Oct 2011 10:01:27 +0000 Subject: 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 --- net/tftp.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'net/tftp.c') diff --git a/net/tftp.c b/net/tftp.c index a893e020fd..da8eeaa58d 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -615,9 +615,7 @@ TftpStart(void) } } -#if defined(CONFIG_NET_MULTI) printf("Using %s device\n", eth_get_name()); -#endif printf("TFTP from server %pI4" "; our IP address is %pI4", &TftpRemoteIP, &NetOurIP); @@ -687,9 +685,7 @@ TftpStartServer(void) { tftp_filename[0] = 0; -#if defined(CONFIG_NET_MULTI) printf("Using %s device\n", eth_get_name()); -#endif printf("Listening for TFTP transfer on %pI4\n", &NetOurIP); printf("Load address: 0x%lx\n", load_addr); -- cgit v1.2.1