diff options
author | Damien George <damien.p.george@gmail.com> | 2020-03-18 17:47:15 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-03-18 21:01:07 +1100 |
commit | 2cdf1d25f59409b6130c0e8b6cf50300aed2d7e6 (patch) | |
tree | 762d210ad4a7c51903498bc0a2c3b885059e778f /ports/unix/variants/coverage/mpconfigvariant.h | |
parent | 68b1bc2042f8e5dcdfbe12c5b0dace0b174f6911 (diff) |
unix: Remove custom file implementation to use extmod's VFS POSIX one.
The implementation in extmod/vfs_posix_file.c is now equivalent to that in
ports/unix/file.c, so remove the latter and use the former instead.
Diffstat (limited to 'ports/unix/variants/coverage/mpconfigvariant.h')
-rw-r--r-- | ports/unix/variants/coverage/mpconfigvariant.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ports/unix/variants/coverage/mpconfigvariant.h b/ports/unix/variants/coverage/mpconfigvariant.h index 3a0cd3e96..12f37a6cb 100644 --- a/ports/unix/variants/coverage/mpconfigvariant.h +++ b/ports/unix/variants/coverage/mpconfigvariant.h @@ -61,10 +61,6 @@ #define MICROPY_PY_UCRYPTOLIB_CTR (1) #define MICROPY_PY_MICROPYTHON_HEAP_LOCKED (1) -// TODO these should be generic, not bound to fatfs -#define mp_type_fileio mp_type_vfs_posix_fileio -#define mp_type_textio mp_type_vfs_posix_textio - // use vfs's functions for import stat and builtin open #define mp_import_stat mp_vfs_import_stat #define mp_builtin_open mp_vfs_open |