From: Wolfgang Denk Date: Wed, 5 Oct 2005 23:43:39 +0000 (+0200) Subject: Remove unnecessary dependency of netconsole on CONFIG_NET_MULTI X-Git-Tag: v2008.10-rc1~1364 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ae31ee114741ff1643308d160e1918b78eb72c6;p=platform%2Fkernel%2Fu-boot.git Remove unnecessary dependency of netconsole on CONFIG_NET_MULTI Patch by Marcus Hall, 24 Aug 2005 --- diff --git a/CHANGELOG b/CHANGELOG index 4263dcd..eefc04f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ Changes for U-Boot 1.1.4: ====================================================================== +* Remove unnecessary dependency of netconsole on CONFIG_NET_MULTI + Patch by Marcus Hall, 24 Aug 2005 + * Fix the machine-id of the Cogent csb637 board Patch by Anders Larsen, 05 Oct 2005 diff --git a/drivers/netconsole.c b/drivers/netconsole.c index 9cf6cd6..9a0a24f 100644 --- a/drivers/netconsole.c +++ b/drivers/netconsole.c @@ -29,10 +29,6 @@ #include #include -#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 */