summaryrefslogtreecommitdiff
path: root/nuttx/sched/init
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-10-06 11:45:35 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-10-06 11:45:35 -0600
commitc8230fc4be87d7fdd360434c229371d8e2c80ead (patch)
tree26d9e14084fd4b2f2a1d7195377a3b28c6d977ee /nuttx/sched/init
parent39622e91aee672e907020057965a5145661c2fa8 (diff)
downloadnuttx-c8230fc4be87d7fdd360434c229371d8e2c80ead.tar.gz
nuttx-c8230fc4be87d7fdd360434c229371d8e2c80ead.tar.bz2
nuttx-c8230fc4be87d7fdd360434c229371d8e2c80ead.zip
fs_initialize() is no longer weak
Diffstat (limited to 'nuttx/sched/init')
-rw-r--r--nuttx/sched/init/os_start.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/nuttx/sched/init/os_start.c b/nuttx/sched/init/os_start.c
index dae073b22..59929e0b5 100644
--- a/nuttx/sched/init/os_start.c
+++ b/nuttx/sched/init/os_start.c
@@ -459,12 +459,7 @@ void os_start(void)
#if CONFIG_NFILE_DESCRIPTORS > 0
/* Initialize the file system (needed to support device drivers) */
-#ifdef CONFIG_HAVE_WEAKFUNCTIONS
- if (fs_initialize != NULL)
-#endif
- {
- fs_initialize();
- }
+ fs_initialize();
#endif
#ifdef CONFIG_NET