diff --git a/extmod/vfs_fat_file.c b/extmod/vfs_fat_file.c
index f5a18803636bbabf71afcd0b9637511b964c543c..d3d437823dac9e60c218c219c0b0576b73bafdac 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 2f06d9f637b7a752b259231b3e6ca6032d1438c8..7e7576398b16d7a5fd12c2a11b6208b933f0ae7e 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"