summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-01 06:41:30 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-01 06:41:30 -0600
commitb98585a1b1929777a576a5973c17ead28e754318 (patch)
treed09e129452a22a8cc531d59da43898981fa760a3 /nuttx/include
parentbbd70473faec77cd9a77b410d43b1f1bc3368cc7 (diff)
downloadnuttx-b98585a1b1929777a576a5973c17ead28e754318.tar.gz
nuttx-b98585a1b1929777a576a5973c17ead28e754318.tar.bz2
nuttx-b98585a1b1929777a576a5973c17ead28e754318.zip
Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are problems. From Woohan Lee
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/fs/fs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/include/nuttx/fs/fs.h b/nuttx/include/nuttx/fs/fs.h
index ad05da5d7..b21d9cf80 100644
--- a/nuttx/include/nuttx/fs/fs.h
+++ b/nuttx/include/nuttx/fs/fs.h
@@ -205,7 +205,7 @@ struct mountpt_operations
* stats file stat(), file attributes, file truncation, etc.
*/
};
-#endif /* CONFIG_DISABLE_MOUNTPOUNT */
+#endif /* CONFIG_DISABLE_MOUNTPOINT */
/* Named OS resources are also maintained by the VFS. This includes:
*
@@ -224,7 +224,7 @@ struct mountpt_operations
union inode_ops_u
{
FAR const struct file_operations *i_ops; /* Driver operations for inode */
-#ifndef CONFIG_DISABLE_MOUNTPOUNT
+#ifndef CONFIG_DISABLE_MOUNTPOINT
FAR const struct block_operations *i_bops; /* Block driver operations */
FAR const struct mountpt_operations *i_mops; /* Operations on a mountpoint */
#endif
@@ -335,7 +335,7 @@ struct streamlist
* pseudo-file system.
*/
-#ifndef CONFIG_DISABLE_MOUNTPOUNT
+#ifndef CONFIG_DISABLE_MOUNTPOINT
struct statfs; /* Forward reference */
typedef int (*foreach_mountpoint_t)(FAR const char *mountpoint,
FAR struct statfs *statbuf,
@@ -388,7 +388,7 @@ void fs_initialize(void);
*
****************************************************************************/
-#ifndef CONFIG_DISABLE_MOUNTPOUNT
+#ifndef CONFIG_DISABLE_MOUNTPOINT
int foreach_mountpoint(foreach_mountpoint_t handler, FAR void *arg);
#endif