Skip to content
Snippets Groups Projects
Commit fb298804 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

FS mount logic: Fix error in conditional compilation. Reported by Daniel Palmer

parent 8353d234
No related branches found
No related tags found
No related merge requests found
......@@ -6052,4 +6052,7 @@
forthcoming USB host controller driver (2013-11-14).
* arch/arm/src/lpc31/lpc31_ehci.c: First cut at an EHCI driver
tailed for the LPC31 (2013-11-14).
* fs/fs_mount.c: SMART FS must be included in the conditional
compilation for the set of file systems that require block
drivers. From Daniel Palmer (2013-11-15).
......@@ -68,7 +68,8 @@
* These file systems all require block drivers:
*/
#if defined(CONFIG_FS_FAT) || defined(CONFIG_FS_ROMFS)
#if defined(CONFIG_FS_FAT) || defined(CONFIG_FS_ROMFS) || \
defined(CONFIG_FS_SMARTFS)
# define BDFS_SUPPORT 1
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment