aboutsummaryrefslogtreecommitdiff
path: root/extmod/vfs_fat.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-02-23 17:17:32 +1100
committerDamien George <damien.p.george@gmail.com>2018-02-23 17:17:32 +1100
commitae4a07730af7fe4f62f9f61e8b600e39f557925e (patch)
treed493c8d2c9154d35a83db372efd69593f13082b2 /extmod/vfs_fat.h
parent989fc16162125c9c1c65e0f74d9d7bc73bc9a340 (diff)
extmod/vfs_fat: Move ilistdir implementation from misc to main file.
The fat_vfs_ilistdir2() function was only used by fat_vfs_ilistdir_func() so moving the former into the same file as the latter allows it to be placed directly into the latter function, thus saving code size.
Diffstat (limited to 'extmod/vfs_fat.h')
-rw-r--r--extmod/vfs_fat.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/extmod/vfs_fat.h b/extmod/vfs_fat.h
index 688452973..b6a4795bb 100644
--- a/extmod/vfs_fat.h
+++ b/extmod/vfs_fat.h
@@ -60,6 +60,4 @@ mp_import_stat_t fat_vfs_import_stat(struct _fs_user_mount_t *vfs, const char *p
mp_obj_t fatfs_builtin_open_self(mp_obj_t self_in, mp_obj_t path, mp_obj_t mode);
MP_DECLARE_CONST_FUN_OBJ_KW(mp_builtin_open_obj);
-mp_obj_t fat_vfs_ilistdir2(struct _fs_user_mount_t *vfs, const char *path, bool is_str_type);
-
#endif // MICROPY_INCLUDED_EXTMOD_VFS_FAT_H