From a1d3faaa8a4d722246eef65b49208508445a4776 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 13 Feb 2015 18:39:43 -0600 Subject: [PATCH] Update ChangeLog --- ChangeLog | 3 --- sched/init/os_start.c | 4 +++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index c03440411af..9082158e899 100755 --- a/ChangeLog +++ b/ChangeLog @@ -9800,9 +9800,6 @@ arch/arm/src/stm32/stm32_rtc_lowerhalf.c. This is just the framework for the RTC lower half. None of the interface methods have yet been implemented (2015-02-13). - * sched/init/os_start.c: Move the initialization of the networking - subsystem to AFTER up_initialize is called. From Macs Neklyudov - (2015-02-13). * net/icmpv6/icmpv6_advertise.c and icmpv6_solicit.c: Add inclusion of nuttx/net.h to two files. Without these there can be compilation errors in certain configurations. From Max Neklyudov (2015-02-13). diff --git a/sched/init/os_start.c b/sched/init/os_start.c index fcb305180bd..63055142d1b 100644 --- a/sched/init/os_start.c +++ b/sched/init/os_start.c @@ -466,7 +466,9 @@ void os_start(void) #endif #ifdef CONFIG_NET - /* Initialize the network system */ + /* Initialize the networking systeming. This must be done prior to + * registering network drivers. + */ net_initialize(); #endif