aboutsummaryrefslogtreecommitdiff
path: root/extmod/vfs_fat.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-01-29 15:26:24 +1100
committerDamien George <damien.p.george@gmail.com>2017-01-30 12:26:07 +1100
commit0bd61d23b9b21819da9d10290dfccd4ae4a69e1a (patch)
treec4b415d9cdebdc10539c3b6a1eb61ed47596712a /extmod/vfs_fat.c
parent95635ade8b8b848554e577250256145d65de9608 (diff)
extmod/vfs_fat: Remove MICROPY_FATFS_OO config option.
Everyone should now be using the new ooFatFs library. The old one is no longer supported and will be removed.
Diffstat (limited to 'extmod/vfs_fat.c')
-rw-r--r--extmod/vfs_fat.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/extmod/vfs_fat.c b/extmod/vfs_fat.c
index a6f2ae806..ecbbdb59a 100644
--- a/extmod/vfs_fat.c
+++ b/extmod/vfs_fat.c
@@ -32,10 +32,6 @@
#error "with MICROPY_VFS_FAT enabled, must also enable MICROPY_VFS"
#endif
-#if !MICROPY_FATFS_OO
-#error "with MICROPY_VFS_FAT enabled, must also enable MICROPY_FATFS_OO"
-#endif
-
#include <string.h>
#include "py/nlr.h"
#include "py/runtime.h"