]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - fs/fs.c
arm: omap: cm_t35: Remove CONFIG_SYS_BOOTMAPSZ to fix FDT Linux booting
[karo-tx-uboot.git] / fs / fs.c
diff --git a/fs/fs.c b/fs/fs.c
index 2e60f57bc450dc547e5ac2ff3a84a69991c5472d..79d432d58fe094c8eb09e04204114b8bd0d7f172 100644 (file)
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -90,7 +90,7 @@ static struct fstype_info fstypes[] = {
                .probe = fat_set_blk_dev,
                .close = fat_close,
                .ls = file_fat_ls,
-               .exists = fs_exists_unsupported,
+               .exists = fat_exists,
                .read = fat_read_file,
                .write = fs_write_unsupported,
        },
@@ -102,7 +102,7 @@ static struct fstype_info fstypes[] = {
                .probe = ext4fs_probe,
                .close = ext4fs_close,
                .ls = ext4fs_ls,
-               .exists = fs_exists_unsupported,
+               .exists = ext4fs_exists,
                .read = ext4_read_file,
                .write = fs_write_unsupported,
        },