VFS: Fix Kconfig prefix

This commit is contained in:
Roland Dobai
2019-07-02 17:14:58 +02:00
parent 6895ea1624
commit 43eb58da99
9 changed files with 25 additions and 20 deletions

View File

@@ -27,7 +27,7 @@
#include <sys/types.h>
#include "sdkconfig.h"
#ifdef CONFIG_SUPPORT_TERMIOS
#ifdef CONFIG_VFS_SUPPORT_TERMIOS
// subscripts for the array c_cc:
#define VEOF 0 /** EOF character */
@@ -291,6 +291,6 @@ int tcsetattr(int fd, int optional_actions, const struct termios *p);
} // extern "C"
#endif
#endif // CONFIG_SUPPORT_TERMIOS
#endif // CONFIG_VFS_SUPPORT_TERMIOS
#endif //__ESP_SYS_TERMIOS_H__