]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - fs/fat/file.c
imported Freescale specific U-Boot additions for i.MX28,... release L2.6.31_10.08.01
[karo-tx-uboot.git] / fs / fat / file.c
index f999ac5a254a846856f2c2523c6f6d9a12d045b1..e8707344022097b51085b26f90d87629d50e947c 100755 (executable)
@@ -32,8 +32,6 @@
 #include <linux/stat.h>
 #include <linux/time.h>
 
-#if (CONFIG_COMMANDS & CFG_CMD_FAT)
-
 /* Supported filesystems */
 static const struct filesystem filesystems[] = {
        { file_fat_detectfs,  file_fat_ls,  file_fat_read,  "FAT" },
@@ -204,5 +202,3 @@ file_read(const char *filename, void *buffer, unsigned long maxsize)
 
        return filesystems[current_filesystem].read(arg, buffer, maxsize);
 }
-
-#endif /* #if (CONFIG_COMMANDS & CFG_CMD_FAT) */