aboutsummaryrefslogtreecommitdiff
path: root/extmod/vfs_fat_misc.c
diff options
context:
space:
mode:
authorDamien George2017-01-29 19:50:32 +1100
committerDamien George2017-01-30 12:26:08 +1100
commit0fb27888fc805e4b39f74153d8543fe7348eb886 (patch)
tree440771768930cd038601c9ee1fc4089efcb549e3 /extmod/vfs_fat_misc.c
parent196406e17a45dd87f12c2a1d7c97a67bb9dcb04f (diff)
extmod/vfs_fat: Remove unused function fat_vfs_listdir.
Diffstat (limited to 'extmod/vfs_fat_misc.c')
-rw-r--r--extmod/vfs_fat_misc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c
index 97d2675cd..19db99c7f 100644
--- a/extmod/vfs_fat_misc.c
+++ b/extmod/vfs_fat_misc.c
@@ -36,10 +36,6 @@
// TODO: actually, the core function should be ilistdir()
-mp_obj_t fat_vfs_listdir(const char *path, bool is_str_type) {
- return fat_vfs_listdir2(NULL, path, is_str_type);
-}
-
mp_obj_t fat_vfs_listdir2(fs_user_mount_t *vfs, const char *path, bool is_str_type) {
FRESULT res;
FILINFO fno;