py/runtime: Remove long-obsolete MICROPY_FSUSERMOUNT init code.

In 1808b2e8d5 it was replaced by MICROPY_VFS
and related code.
pull/4622/head
Damien George 2019-03-20 00:16:37 +11:00
rodzic ec6e62efc2
commit 440462b18e
1 zmienionych plików z 0 dodań i 5 usunięć

Wyświetl plik

@ -111,11 +111,6 @@ void mp_init(void) {
}
#endif
#if MICROPY_FSUSERMOUNT
// zero out the pointers to the user-mounted devices
memset(MP_STATE_VM(fs_user_mount), 0, sizeof(MP_STATE_VM(fs_user_mount)));
#endif
#if MICROPY_VFS
// initialise the VFS sub-system
MP_STATE_VM(vfs_cur) = NULL;