diff --git a/fs/tmpfs/fs_tmpfs.c b/fs/tmpfs/fs_tmpfs.c index 915ccb6aec..81796ecc18 100644 --- a/fs/tmpfs/fs_tmpfs.c +++ b/fs/tmpfs/fs_tmpfs.c @@ -662,7 +662,9 @@ static int tmpfs_create_file(FAR struct tmpfs_s *fs, name = copy; parent = (FAR struct tmpfs_directory_s *)fs->tfs_root.tde_object; - /* Lock the root directory to emulate the behavior of tmpfs_find_directory() */ + /* Lock the root directory to emulate the behavior of + * tmpfs_find_directory() + */ ret = tmpfs_lock_directory(parent); if (ret < 0) @@ -1175,7 +1177,9 @@ static int tmpfs_statfs_callout(FAR struct tmpfs_directory_s *tdo, DEBUGASSERT(to != NULL); - /* Accumulate statistics. Save the total memory allocated for this object. */ + /* Accumulate statistics. Save the total memory allocated + * for this object. + */ tmpbuf->tsf_alloc += to->to_alloc; @@ -1271,7 +1275,7 @@ static int tmpfs_free_callout(FAR struct tmpfs_directory_s *tdo, if (tfo->tfo_refs > 0) { - /* Yes.. We cannot delete the file now. Just mark it as unlinked. */ + /* Yes.. We cannot delete the file now. Just mark it as unlinked. */ tfo->tfo_flags |= TFO_FLAG_UNLINKED; return TMPFS_UNLINKED;