diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-06 01:43:39 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-06 01:43:39 +0200 | 
| commit | 5ae31ee114741ff1643308d160e1918b78eb72c6 (patch) | |
| tree | dc358bed58f0fa13a3c531e4e26b94f6f96d6ce1 /drivers/netconsole.c | |
| parent | f5c254d719f4844df309c23bc7a84a40a07001a5 (diff) | |
| download | olio-uboot-2014.01-5ae31ee114741ff1643308d160e1918b78eb72c6.tar.xz olio-uboot-2014.01-5ae31ee114741ff1643308d160e1918b78eb72c6.zip  | |
Remove unnecessary dependency of netconsole on CONFIG_NET_MULTI
Patch by Marcus Hall, 24 Aug 2005
Diffstat (limited to 'drivers/netconsole.c')
| -rw-r--r-- | drivers/netconsole.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/netconsole.c b/drivers/netconsole.c index 9cf6cd633..9a0a24f3a 100644 --- a/drivers/netconsole.c +++ b/drivers/netconsole.c @@ -29,10 +29,6 @@  #include <devices.h>  #include <net.h> -#ifndef CONFIG_NET_MULTI -#error define CONFIG_NET_MULTI to use netconsole -#endif -  static char input_buffer[512];  static int input_size = 0;		/* char count in input buffer */  static int input_offset = 0;		/* offset to valid chars in input buffer */  |