fs: fix config name for smartfs exclusion from procfs
authorOleg Lyovin <o.lyovin@partner.samsung.com>
Thu, 6 Jul 2017 12:24:08 +0000 (15:24 +0300)
committerOleg Lyovin <o.lyovin@partner.samsung.com>
Wed, 9 Aug 2017 13:16:33 +0000 (16:16 +0300)
Smartfs info can be excluded from procfs by enabling
FS_PROCFS_EXCLUDE_SMARTFS config, but in smartfs_procfs
there was syntax error with wrong config name.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
os/fs/smartfs/smartfs_procfs.c

index 43b6d62..325937a 100644 (file)
@@ -82,7 +82,7 @@
 #include <arch/irq.h>
 #include "smartfs.h"
 
-#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_FS_EXCLUDE_SMARTFS)
+#if defined(CONFIG_FS_PROCFS) && !defined(CONFIG_FS_PROCFS_EXCLUDE_SMARTFS)
 
 /****************************************************************************
  * Pre-processor Definitions