]> git.dujemihanovic.xyz Git - u-boot.git/commit
fs: fat: usage basename in file_fat_write_at, fat_mkdir
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 30 Jan 2021 09:01:08 +0000 (10:01 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Wed, 3 Feb 2021 08:52:51 +0000 (09:52 +0100)
commit4c4006b694c4188a6face1c70bf16d0c5d49a2e9
tree453e323cab0866f09cce2c4aa04a8b1b97dc5f60
parentfdcb93e1709ab1a2ebb562455621617c29e2099c
fs: fat: usage basename in file_fat_write_at, fat_mkdir

This patch involves no functional change. It is just about code
readability.

Both in file_fat_write_at() and fat_mkdir() the incoming file or directory
path are split into two parts: the parent directory and the base name.

In file_fat_write_at() the value of the variable basename is assigned to
the filename parameter and afterwards the variable filename is used instead
of basename. It is more readable to use the variable basename and leave
filename unchanged.

In fat_mkdir() the base name variable is called directory. This is
confusing. Call it basename like in file_fat_write_at(). This allows to
rename parameter new_directory to directory in the implementation of
fat_mkdir() to match the function declaration.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
fs/fat/fat_write.c