summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-10-13 11:26:26 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2019-10-17 20:19:55 +0300
commite4bad9f9f0532d2980eed21be07c8799a0f4b818 (patch)
tree2c1e08af828eacda52870945db615b1a0a1fa963
parent64f49eb7d0697b73fa271a69832069e591c07acc (diff)
downloadu-boot-e4bad9f9f0532d2980eed21be07c8799a0f4b818.tar.xz
fs: update fs_close() description
Provide a more detailed description of fs_close(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r--include/fs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h
index 5a1244d57f..247e954053 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -40,7 +40,12 @@ int fs_set_blk_dev_with_part(struct blk_desc *desc, int part);
/**
* fs_close() - Unset current block device and partition
*
- * Should be paired with either fs_set_blk_dev() or fs_set_dev_with_part()
+ * fs_close() closes the connection to a file system opened with either
+ * fs_set_blk_dev() or fs_set_dev_with_part().
+ *
+ * Many file functions implicitly call fs_close(), e.g. fs_closedir(),
+ * fs_exist(), fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write(),
+ * fs_unlink().
*/
void fs_close(void);