Skip to content

Commit 3d6f957

Browse files
committed
extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config option.
1 parent 8beba73 commit 3d6f957

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

extmod/vfs_fat_file.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
*/
2626

2727
#include "py/mpconfig.h"
28-
// *_ADHOC part is for cc3200 port which doesn't use general uPy
29-
// infrastructure and instead duplicates code. TODO: Resolve.
30-
#if MICROPY_VFS || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
28+
#if MICROPY_VFS || MICROPY_FSUSERMOUNT
3129

3230
#include <stdio.h>
3331
#include <errno.h>

extmod/vfs_fat_misc.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
*/
2626

2727
#include "py/mpconfig.h"
28-
// *_ADHOC part is for cc3200 port which doesn't use general uPy
29-
// infrastructure and instead duplicates code. TODO: Resolve.
30-
#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
28+
#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT
3129

3230
#include <string.h>
3331
#include "py/nlr.h"

0 commit comments

Comments
 (0)