Browse Source

Fixed typo 'WirtePageWithLayout' in uffs

WirtePageWithLayout ->WritePageWithLayout
David Lin 5 years ago
parent
commit
8d497e945a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      components/dfs/filesystems/uffs/src/emu/uffs_fileem_ecc_soft.c

+ 4 - 4
components/dfs/filesystems/uffs/src/emu/uffs_fileem_ecc_soft.c

@@ -203,10 +203,10 @@ uffs_FlashOps g_femu_ops_ecc_soft = {
 	femu_InitFlash,		// InitFlash()
 	femu_InitFlash,		// InitFlash()
 	femu_ReleaseFlash,	// ReleaseFlash()
 	femu_ReleaseFlash,	// ReleaseFlash()
 	femu_ReadPage,		// ReadPage()
 	femu_ReadPage,		// ReadPage()
-	NULL,				// ReadPageWithLayout
+	NULL,		        // ReadPageWithLayout
 	femu_WritePage,		// WritePage()
 	femu_WritePage,		// WritePage()
-	NULL,				// WirtePageWithLayout
-	NULL,				// IsBadBlock(), let UFFS take care of it.
-	NULL,				// MarkBadBlock(), let UFFS take care of it.
+	NULL,			// WritePageWithLayout
+	NULL,			// IsBadBlock(), let UFFS take care of it.
+	NULL,			// MarkBadBlock(), let UFFS take care of it.
 	femu_EraseBlock,	// EraseBlock()
 	femu_EraseBlock,	// EraseBlock()
 };
 };