diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-29 23:15:43 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-30 12:26:08 +1100 |
commit | 30beed119f9321c3202be8527d7c31acf873d9e8 (patch) | |
tree | 71b7ecf3cdca063b900c31f1262f017c43d6f8c4 /unix | |
parent | 0fb27888fc805e4b39f74153d8543fe7348eb886 (diff) | |
download | micropython-30beed119f9321c3202be8527d7c31acf873d9e8.tar.gz micropython-30beed119f9321c3202be8527d7c31acf873d9e8.zip |
unix/modos: Remove VfsFat from uos module, it's now in uos_vfs module.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/modos.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/unix/modos.c b/unix/modos.c index 1584b0d207..d6e6a8fb31 100644 --- a/unix/modos.c +++ b/unix/modos.c @@ -39,7 +39,6 @@ #include "py/objtuple.h" #include "py/mphal.h" #include "extmod/misc.h" -#include "extmod/vfs_fat.h" #ifdef __ANDROID__ #define USE_STATFS 1 @@ -226,9 +225,6 @@ STATIC const mp_rom_map_elem_t mp_module_os_globals_table[] = { { MP_ROM_QSTR(MP_QSTR_getenv), MP_ROM_PTR(&mod_os_getenv_obj) }, { MP_ROM_QSTR(MP_QSTR_mkdir), MP_ROM_PTR(&mod_os_mkdir_obj) }, { MP_ROM_QSTR(MP_QSTR_ilistdir), MP_ROM_PTR(&mod_os_ilistdir_obj) }, - #if MICROPY_VFS_FAT - { MP_ROM_QSTR(MP_QSTR_VfsFat), MP_ROM_PTR(&mp_fat_vfs_type) }, - #endif #if MICROPY_PY_OS_DUPTERM { MP_ROM_QSTR(MP_QSTR_dupterm), MP_ROM_PTR(&mp_uos_dupterm_obj) }, #endif |