diff options
| -rw-r--r-- | drivers/net/netconsole.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 744f4d15e..19e563ea8 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -169,6 +169,12 @@ static int nc_start(void)  	else  		memset(nc_ether, 0, sizeof(nc_ether));	/* force arp request */ +	/* +	 * Initialize the static IP settings and buffer pointers +	 * incase we call NetSendUDPPacket before NetLoop +	 */ +	net_init(); +  	return 0;  } |