Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are problems. From Woohan Lee

This commit is contained in:
Gregory Nutt
2014-12-01 06:41:30 -06:00
parent 9edbc5a8f5
commit 76906110b0
10 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -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