From: AKASHI Takahiro Date: Mon, 7 Oct 2019 05:59:36 +0000 (+0900) Subject: fs: clean up around fs_type X-Git-Tag: v2020.01-rc1~16^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=185aed7855573214794b13f20e597d36c6dc5760;p=oweals%2Fu-boot.git fs: clean up around fs_type fs_ls(), fs_mkdir() and fs_unlink() sets fs_type to FS_TYPE_ANY explicitly, but it is redundant as they call fs_close(). So just remove those lines. Signed-off-by: AKASHI Takahiro Reviewed-by: Heinrich Schuchardt --- diff --git a/fs/fs.c b/fs/fs.c index 64ba25fea8..b17b76a46a 100644 --- a/fs/fs.c +++ b/fs/fs.c @@ -413,7 +413,6 @@ int fs_ls(const char *dirname) ret = info->ls(dirname); - fs_type = FS_TYPE_ANY; fs_close(); return ret; @@ -597,7 +596,6 @@ int fs_unlink(const char *filename) ret = info->unlink(filename); - fs_type = FS_TYPE_ANY; fs_close(); return ret; @@ -611,7 +609,6 @@ int fs_mkdir(const char *dirname) ret = info->mkdir(dirname); - fs_type = FS_TYPE_ANY; fs_close(); return ret;