From 3d6f9572084a8bcba762899ee4f8ea15ddf010ab Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Sun, 29 Jan 2017 15:17:55 +1100
Subject: [PATCH] extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config
 option.

---
 extmod/vfs_fat_file.c | 4 +---
 extmod/vfs_fat_misc.c | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/extmod/vfs_fat_file.c b/extmod/vfs_fat_file.c
index f5a188036..d3d437823 100644
--- a/extmod/vfs_fat_file.c
+++ b/extmod/vfs_fat_file.c
@@ -25,9 +25,7 @@
  */
 
 #include "py/mpconfig.h"
-// *_ADHOC part is for cc3200 port which doesn't use general uPy
-// infrastructure and instead duplicates code. TODO: Resolve.
-#if MICROPY_VFS || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
+#if MICROPY_VFS || MICROPY_FSUSERMOUNT
 
 #include <stdio.h>
 #include <errno.h>
diff --git a/extmod/vfs_fat_misc.c b/extmod/vfs_fat_misc.c
index 2f06d9f63..7e7576398 100644
--- a/extmod/vfs_fat_misc.c
+++ b/extmod/vfs_fat_misc.c
@@ -25,9 +25,7 @@
  */
 
 #include "py/mpconfig.h"
-// *_ADHOC part is for cc3200 port which doesn't use general uPy
-// infrastructure and instead duplicates code. TODO: Resolve.
-#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT || MICROPY_FSUSERMOUNT_ADHOC
+#if MICROPY_VFS_FAT || MICROPY_FSUSERMOUNT
 
 #include <string.h>
 #include "py/nlr.h"
-- 
GitLab