diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-27 15:04:17 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 15:04:17 +1100 |
commit | 32a1138b9f66b76808906064a76c5f9533cc825c (patch) | |
tree | 1a3cb1ffc833a4453393d7209538edfd3dec668f /extmod/vfs_fat_ffconf.c | |
parent | 143fa0ffeb41f0fb0f3c84bfd43397d36d97cea5 (diff) |
extmod: Rename vfs_fat_file.h to vfs_fat.h.
And move declaration of mp_fat_vfs_type to this file.
Diffstat (limited to 'extmod/vfs_fat_ffconf.c')
-rw-r--r-- | extmod/vfs_fat_ffconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/vfs_fat_ffconf.c b/extmod/vfs_fat_ffconf.c index ddcdd8844..89081380e 100644 --- a/extmod/vfs_fat_ffconf.c +++ b/extmod/vfs_fat_ffconf.c @@ -36,7 +36,7 @@ #include "lib/fatfs/ff.h" #endif #include "extmod/fsusermount.h" -#include "extmod/vfs_fat_file.h" +#include "extmod/vfs_fat.h" STATIC bool check_path(const TCHAR **path, const char *mount_point_str, mp_uint_t mount_point_len) { if (strncmp(*path, mount_point_str, mount_point_len) == 0) { |